Sha256: e14b79cfc6cf50a4d3b33c6ddebdeb1b3b36b20be605cfea999caff478ff2bb4

Contents?: true

Size: 703 Bytes

Versions: 9

Compression:

Stored size: 703 Bytes

Contents

IALs can refer to element before or after.
*** Parameters: ***
{}
*** Markdown input: ***
Paragraph1
{:#par1}

{:#par2}
Paragraph2
*** Output of inspect ***
md_el(:document,[
	md_par(["Paragraph1"], [[:id, "par1"]]),
	md_par(["Paragraph2"], [[:id, "par2"]])
],{},[])
*** Output of to_html ***

<p id='par1'>Paragraph1</p>

<p id='par2'>Paragraph2</p>

*** Output of to_latex ***
Paragraph1

Paragraph2


*** Output of to_md ***
Paragraph1

Paragraph2


*** Output of to_s ***
Paragraph1Paragraph2
*** EOF ***



	OK!



*** Output of Markdown.pl ***
<p>Paragraph1
{:#par1}</p>

<p>{:#par2}
Paragraph2</p>

*** Output of Markdown.pl (parsed) ***
<p>Paragraph1
{:#par1}</p
   ><p>{:#par2}
Paragraph2</p
 >

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
maruku-0.5.2 tests/unittest/attributes/att3.md
maruku-0.5.3 tests/unittest/attributes/att3.md
maruku-0.5.1 tests/unittest/attributes/att3.md
maruku-0.5.0 tests/unittest/attributes/att3.md
maruku-0.4.2.1 tests/unittest/attributes/att3.md
maruku-0.4.2 tests/unittest/attributes/att3.md
maruku-0.5.4 tests/unittest/attributes/att3.md
maruku-0.5.5 tests/unittest/attributes/att3.md
maruku-0.5.6 tests/unittest/attributes/att3.md