aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-06-27 10:32:05 +0200
committerLoïc Hoguin <[email protected]>2018-06-27 10:32:05 +0200
commitc807385a0563b088e208502c463c720335a058ad (patch)
tree2d231663f80678e87a1557c27c9acdf1d7263e8f
parentb08d5b72e9cd914ceefd609778ac54f65c303aa6 (diff)
downloadasciideck-c807385a0563b088e208502c463c720335a058ad.tar.gz
asciideck-c807385a0563b088e208502c463c720335a058ad.tar.bz2
asciideck-c807385a0563b088e208502c463c720335a058ad.zip
Add missing "asciidoc" table style
-rw-r--r--src/asciideck_tables_pass.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asciideck_tables_pass.erl b/src/asciideck_tables_pass.erl
index 1adcd1e..e20d7d5 100644
--- a/src/asciideck_tables_pass.erl
+++ b/src/asciideck_tables_pass.erl
@@ -174,7 +174,7 @@ parse_specs_style(<<>>, Spec) ->
parse_specs_style(Bin, Spec) ->
Style = parse_specs_match_style(Bin, [
<<"default">>, <<"emphasis">>, <<"monospaced">>, <<"strong">>,
- <<"header">>, <<"literal">>, <<"verse">>
+ <<"header">>, <<"asciidoc">>, <<"literal">>, <<"verse">>
]),
Spec#{style => Style}.