Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions tests/syntax-tests/highlighted/INI/test.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[section]
key=value
numeric = 42
quotes="this value is quoted"
quotes2="this is not a comment ;foo"
different_quotes='these are other characters'

[another one]
first = value
; comment on own line
;another one
second=value ; comment at the end of a line
third = value;another one
# is this a comment? maybe.

[section.with.dots]
[section\with\backspaces]
[section;with;semicola]
18 changes: 18 additions & 0 deletions tests/syntax-tests/source/INI/test.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[section]
key=value
numeric = 42
quotes="this value is quoted"
quotes2="this is not a comment ;foo"
different_quotes='these are other characters'

[another one]
first = value
; comment on own line
;another one
second=value ; comment at the end of a line
third = value;another one
# is this a comment? maybe.

[section.with.dots]
[section\with\backspaces]
[section;with;semicola]