aboutsummaryrefslogtreecommitdiffstats
path: root/src/asciideck_to_html.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/asciideck_to_html.erl')
-rw-r--r--src/asciideck_to_html.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/asciideck_to_html.erl b/src/asciideck_to_html.erl
index 035ff96..b33150f 100644
--- a/src/asciideck_to_html.erl
+++ b/src/asciideck_to_html.erl
@@ -223,6 +223,8 @@ inline({strong, _, Text, _}) ->
["<strong>", inline(Text), "</strong>"];
inline({inline_literal_passthrough, _, Text, _}) ->
["<code>", inline(Text), "</code>"];
+inline({line_break, _, _, _}) ->
+ "<br/>";
inline(Text) when is_list(Text) ->
[inline(T) || T <- Text].