Skip to content

Commit

Permalink
more inclusive tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jzebedee committed Aug 16, 2019
1 parent 8346a10 commit 6078bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ck2txt.pest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WHITESPACE = _{ " " | "\t" | "\r" | "\n" }
header = { "CK2txt" }

identifier = { tag }
tag = @{ (ASCII_ALPHA | "_")+ | ASCII_DIGIT+ }
tag = @{ (ASCII_ALPHANUMERIC | "_" | "-" | ".")+ }

object = {
"{" ~ "}" |
Expand Down

0 comments on commit 6078bfe

Please sign in to comment.