Skip to content

Commit

Permalink
Merge branch 'main' into chained-transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergondza committed Jun 12, 2024
2 parents 2720eb2 + b95a32f commit 64122c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/github/olivergondza/saxeed/TagName.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Example:
*
* <pre>
* `&lt;a>` := uri=""; prefix=""; local="a"
* `&lt;a xmlns="XXX">` := uri="XXX"; prefix=""; local="a" (`xmlns` can be declared on a parent tag)
* `&lt;x:a xmlns:x="XXX">` := uri="XXX"; prefix="x"; local="a" (`xmlns:x` can be declared on a parent tag)
* `&lt;a&gt;` := uri=""; prefix=""; local="a"
* `&lt;a xmlns="XXX"&gt;` := uri="XXX"; prefix=""; local="a" (`xmlns` can be declared on a parent tag)
* `&lt;x:a xmlns:x="XXX"&gt;` := uri="XXX"; prefix="x"; local="a" (`xmlns:x` can be declared on a parent tag)
* </pre>
*/
public class TagName {
Expand Down

0 comments on commit 64122c9

Please sign in to comment.