@ -9,7 +9,7 @@ class AdvancedTextFormatter < TextFormatter
def block_code(code, _language)
<<~HTML.squish
<pre><code>#{h(code).gsub("\n", '<br/>')}</code></pre>
<pre><code>#{ERB::Util.h(code).gsub("\n", '<br/>')}</code></pre>
HTML
end
@ -34,6 +34,14 @@ RSpec.describe AdvancedTextFormatter do
context 'given a block code' do
let(:text) { "test\n\n```\nint main(void) {\n return 0;\n}\n```\n" }
it 'formats code using <pre> and <code>' do
is_expected.to include '<pre><code>int main'
context 'given some quote' do
let(:text) { "> foo\n\nbar" }