From d1444b4ecdd7bc2f3b6180ceb2635d51382c4ab8 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 17 Aug 2017 16:01:44 -0700 Subject: RST reader/writer: support unknown interpreted text roles... ...by parsing them as Span with "role" attributes. This way they can be manipulated in the AST. Closes #3407. --- test/Tests/Readers/RST.hs | 3 ++- test/command/3407.md | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 test/command/3407.md (limited to 'test') diff --git a/test/Tests/Readers/RST.hs b/test/Tests/Readers/RST.hs index cbca1564f..61a2673f5 100644 --- a/test/Tests/Readers/RST.hs +++ b/test/Tests/Readers/RST.hs @@ -162,7 +162,8 @@ tests = [ "line block with blank line" =: , "role with recursive inheritance" =: ".. role:: haskell(code)\n.. role:: lhs(haskell)\n\n:lhs:`text`" =?> para (codeWith ("", ["lhs", "haskell", "sourceCode"], []) "text") - , "unknown role" =: ":unknown:`text`" =?> para (str "text") + , "unknown role" =: ":unknown:`text`" =?> + para (spanWith ("",[],[("role","unknown")]) (str "text")) ] , testGroup "footnotes" [ "remove space before note" =: T.unlines diff --git a/test/command/3407.md b/test/command/3407.md new file mode 100644 index 000000000..3160d1263 --- /dev/null +++ b/test/command/3407.md @@ -0,0 +1,13 @@ +``` +% pandoc -f native -t rst +[Para [Span ("",[],[("role","foo")]) [Str "text"]]] +^D +:foo:`text` +``` + +``` +% pandoc -f rst -t native +:foo:`text` +^D +[Para [Span ("",[],[("role","foo")]) [Str "text"]]] +``` -- cgit v1.2.3