-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enh(xml) better support processing directives (#3492)
- Loading branch information
1 parent
a2bfcce
commit f2c6652
Showing
6 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<span class="hljs-meta"><?xml version="1.0" encoding="ISO-8859-1" ?></span> | ||
<span class="hljs-meta"><?xml version=<span class="hljs-string">"1.0"</span> encoding=<span class="hljs-string">"ISO-8859-1"</span> ?></span> | ||
<span class="hljs-tag"><<span class="hljs-name">xs:schema</span> <span class="hljs-attr">xmlns:xs</span>=<span class="hljs-string">"http://www.w3.org/2001/XMLSchema"</span>></span><span class="hljs-tag"></<span class="hljs-name">xs:schema</span>></span> | ||
<span class="hljs-tag"><<span class="hljs-name">s:schema</span> <span class="hljs-attr">xmlns:s</span>=<span class="hljs-string">"http://www.w3.org/2001/XMLSchema"</span>></span><span class="hljs-tag"></<span class="hljs-name">s:schema</span>></span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<span class="hljs-meta"><?xml version=<span class="hljs-string">"1.0"</span> encoding=<span class="hljs-string">"ISO-8859-1"</span> ?></span> | ||
<span class="hljs-meta"><?PITarget PIContent?></span> | ||
<span class="hljs-meta"><?xml-stylesheet type=<span class="hljs-string">"text/xsl"</span> href=<span class="hljs-string">"style.xsl"</span>?></span> | ||
<span class="hljs-meta"><?xml-stylesheet type=<span class="hljs-string">"text/css"</span> href=<span class="hljs-string">"style.css"</span>?></span> | ||
Some <span class="hljs-meta"><?Pub _font FontColor="green"?></span>green<span class="hljs-meta"><?Pub /_font?></span> text. | ||
<span class="hljs-meta"><?mso-application progid="Excel.Sheet"?></span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1" ?> | ||
<?PITarget PIContent?> | ||
<?xml-stylesheet type="text/xsl" href="style.xsl"?> | ||
<?xml-stylesheet type="text/css" href="style.css"?> | ||
Some <?Pub _font FontColor="green"?>green<?Pub /_font?> text. | ||
<?mso-application progid="Excel.Sheet"?> |