aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-06-13 09:32:59 +0200
committerLoïc Hoguin <[email protected]>2018-06-13 09:32:59 +0200
commitf167cc190c4b5f818dda0b2593e82828baeb5da3 (patch)
tree11fcc046478bb4322bb87435b04ebbac89ee1168
parent698dbfabf9156481a04ba36a3ccc4c0a46a35559 (diff)
downloadasciideck-f167cc190c4b5f818dda0b2593e82828baeb5da3.tar.gz
asciideck-f167cc190c4b5f818dda0b2593e82828baeb5da3.tar.bz2
asciideck-f167cc190c4b5f818dda0b2593e82828baeb5da3.zip
Make passthrough blocks verbatim
-rw-r--r--src/asciideck_block_parser.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asciideck_block_parser.erl b/src/asciideck_block_parser.erl
index 09d3f1a..5cea5f9 100644
--- a/src/asciideck_block_parser.erl
+++ b/src/asciideck_block_parser.erl
@@ -805,7 +805,7 @@ comment_block_test() ->
%% Asciidoc User Guide 16.6
passthrough_block(St) ->
- delimited_block(St, passthrough_block, $+).
+ delimited_block(St, passthrough_block, $+, #{<<"subs">> => <<"verbatim">>}).
-ifdef(TEST).
passthrough_block_test() ->