Skip to content

Fix CodeFence with unintended Array for format #530

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/rdoc/markdown.kpeg
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ CodeFence = &{ github? }
@Newline
)+ > Ticks3 @Sp @Newline*
{ verbatim = RDoc::Markup::Verbatim.new text
verbatim.format = format.intern if format
verbatim.format = format.intern if format.instance_of?(String)
verbatim
}

Expand Down
8 changes: 8 additions & 0 deletions test/test_rdoc_markdown.rb
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,14 @@ def test_strong
assert_equal '<b>_emphasis_</b>', @parser.strong('_emphasis_')
end

def test_code_fence_with_unintended_array
doc = parse '```<ruby>```'

expected = doc(verb('<ruby>'))

assert_equal expected, doc
end

def parse text
@parser.parse text
end
Expand Down