Fix underline

This commit is contained in:
KMY 2023-03-05 08:15:33 +09:00
parent d014ffd6d0
commit 7c7d21cbef

View file

@ -175,6 +175,7 @@ class TextFormatter
fenced_code_blocks: true,
strikethrough: true,
superscript: true,
underline: true,
highlight: false
)
@markdown.render(html)
@ -197,6 +198,10 @@ class TextFormatter
"<p>#{text}</p>"
end
def underline(text)
nil
end
private
def process_program_code(code)