Skip to content

Commit

Permalink
use XML instead of XMl (#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePlenkov authored Nov 14, 2024
1 parent 050debf commit eb8aa89
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/v4/2.XMLparseOptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Output
```

## htmlEntities
FXP by default parse XMl entities if `processEntities: true`. You can set `htmlEntities` to parse HTML entities. Check [entities](./5.Entities.md) section for more information.
FXP by default parse XML entities if `processEntities: true`. You can set `htmlEntities` to parse HTML entities. Check [entities](./5.Entities.md) section for more information.

## ignoreAttributes

Expand Down
6 changes: 3 additions & 3 deletions docs/v4/6.HTMLParsing.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Input HTML Document
gtag('config', 'UA-80202630-2');
</script>

<title>Fast XMl Parser</title>
<title>Fast XML Parser</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/css/bootstrap.min.css">
Expand Down Expand Up @@ -76,7 +76,7 @@ JS Object
"@_src": "static/js/jquery-3.2.1.min.js"
}
],
"title": "Fast XMl Parser",
"title": "Fast XML Parser",
"meta": [
{
"@_charset": "UTF-8"
Expand Down Expand Up @@ -156,7 +156,7 @@ Output
</script>
<title>
Fast XMl Parser
Fast XML Parser
</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
gtag('config', 'UA-80202630-2');
</script>

<title>Fast XMl Parser</title>
<title>Fast XML Parser</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/css/font-awesome.min.css">
Expand Down
2 changes: 1 addition & 1 deletion spec/html_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("XMLParser", function() {
gtag('config', 'UA-80202630-2');
</script>
<title>Fast XMl Parser</title>
<title>Fast XML Parser</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/css/bootstrap.min.css">
Expand Down

0 comments on commit eb8aa89

Please sign in to comment.