File: issue124.md

package info (click to toggle)
ruby-maruku 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,296 kB
  • ctags: 492
  • sloc: ruby: 5,726; xml: 235; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Handle blocks of inline HTML without a newline without complaining. https://github.com/bhollis/maruku/issues/124
*** Parameters: ***
{:on_error => :raise}
*** Markdown input: ***
What follows uses ruby
<ruby>
    <rb>東</rb><rp>(</rp><rt>トウ</rt><rp>)</rp>
    <rb>京</rb><rp>(</rp><rt>キョウ</rt><rp>)</rp>
</ruby>.
*** Output of inspect ***

*** Output of to_html ***
<p>What follows uses ruby <ruby>
    <rb>東</rb><rp>(</rp><rt>トウ</rt><rp>)</rp>
    <rb>京</rb><rp>(</rp><rt>キョウ</rt><rp>)</rp>
</ruby>.</p>