Merge pull request #1778 from ClearlyClaire/glitch-soc/fixes/code-block-indentation

Fix leading spaces being stripped in Markdown code blocks
master
Claire 2022-05-24 12:11:56 +02:00 committed by GitHub
commit c279dbd470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class AdvancedTextFormatter < TextFormatter
end
def block_code(code, _language)
<<~HTML.squish
<<~HTML
<pre><code>#{ERB::Util.h(code).gsub("\n", '<br/>')}</code></pre>
HTML
end

View File

@ -40,6 +40,10 @@ RSpec.describe AdvancedTextFormatter do
it 'formats code using <pre> and <code>' do
is_expected.to include '<pre><code>int main'
end
it 'does not strip leading spaces' do
is_expected.to include '> return 0'
end
end
context 'given some quote' do