Updated commonmarker gem to 0.17.13
This commit is contained in:
parent
1254f22656
commit
0b9365b6ef
2 changed files with 18 additions and 1 deletions
|
@ -125,7 +125,7 @@ GEM
|
|||
coderay (1.1.2)
|
||||
coercible (1.0.0)
|
||||
descendants_tracker (~> 0.0.1)
|
||||
commonmarker (0.17.8)
|
||||
commonmarker (0.17.13)
|
||||
ruby-enum (~> 0.5)
|
||||
concord (0.1.5)
|
||||
adamantium (~> 0.2.0)
|
||||
|
|
|
@ -60,4 +60,21 @@ describe Banzai::Filter::MarkdownFilter do
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'footnotes in tables' do
|
||||
it 'processes footnotes in table cells' do
|
||||
text = <<-MD.strip_heredoc
|
||||
| Column1 |
|
||||
| --------- |
|
||||
| foot [^1] |
|
||||
|
||||
[^1]: a footnote
|
||||
MD
|
||||
|
||||
result = filter(text)
|
||||
|
||||
expect(result).to include('<td>foot <sup')
|
||||
expect(result).to include('<section class="footnotes">')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue