diff options
author | Vlad Hanciuta <wladsh@gmail.com> | 2020-04-07 00:41:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 16:41:28 -0700 |
commit | 8dbd4938f29aceb079316c9215b515744543b4d5 (patch) | |
tree | af0a78336d8151bb6c17ebfa4ae5f57a8ac3de6c /test | |
parent | 663a5a9b7f36e38a7a13847112fa7ef426dca29c (diff) | |
download | pandoc-8dbd4938f29aceb079316c9215b515744543b4d5.tar.gz |
Vimwiki reader: Add nested syntax highlighting (#6257)
Nested syntaxes are specified like this:
{{{sql
SELECT * FROM table
}}}
The preformatted code block parser has been extended to check if the
first attribute of the block is not a `key=value` pair, and in that case
it will be considered as a class.
Closes #6256.
Diffstat (limited to 'test')
-rw-r--r-- | test/vimwiki-reader.native | 2 | ||||
-rw-r--r-- | test/vimwiki-reader.wiki | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/vimwiki-reader.native b/test/vimwiki-reader.native index 3df91bec5..3b8c37c3a 100644 --- a/test/vimwiki-reader.native +++ b/test/vimwiki-reader.native @@ -49,6 +49,8 @@ Pandoc (Meta {unMeta = fromList [("date",MetaInlines [Str "2017-05-01"]),("title ,CodeBlock ("",[],[]) " Tyger! Tyger! burning bright\n In the forests of the night,\n What immortal hand or eye\n Could frame thy fearful symmetry?\n In what distant deeps or skies\n Burnt the fire of thine eyes?\n On what wings dare he aspire?\n What the hand dare sieze the fire?" ,Header 3 ("preformatted text with attributes",[],[]) [Str "preformatted",Space,Str "text",Space,Str "with",Space,Str "attributes"] ,CodeBlock ("",[],[("class","python"),("style","color:blue")]) " for i in range(1, 5):\n print(i)" +,Header 3 ("preformatted text with nested syntax",[],[]) [Str "preformatted",Space,Str "text",Space,Str "with",Space,Str "nested",Space,Str "syntax"] +,CodeBlock ("",["sql"],[]) "SELECT * FROM table" ,Header 3 ("empty preformatted text",[],[]) [Str "empty",Space,Str "preformatted",Space,Str "text"] ,CodeBlock ("",[],[]) "" ,Header 2 ("block quotes",[],[]) [Str "block",Space,Str "quotes"] diff --git a/test/vimwiki-reader.wiki b/test/vimwiki-reader.wiki index c85d663ae..01973a41a 100644 --- a/test/vimwiki-reader.wiki +++ b/test/vimwiki-reader.wiki @@ -117,6 +117,12 @@ Just two backticks: `` print(i) }}} +=== preformatted text with nested syntax === + +{{{sql +SELECT * FROM table +}}} + === empty preformatted text === {{{ |