Blame view

vendor/cebe/markdown/tests/markdown-data/html-block.md 348 Bytes
abf1649b   andryeyev   Чистая установка ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  paragraph 1 is here
  
  <table>
  	<tr>
  		<td>a</td>
  		<td>b</td>
  	</tr>
  	<tr>
  		<td>c</td>
  		<td>d</td>
  	</tr>
  </table>
  
  more markdown here
  
  < this is not an html tag
  
  <thisisnotanhtmltag
  
  <span class="test">some inline **md**</span>
  
  <span>some inline **md**</span>
  
  self-closing on block level:
  
  <p>this is a paragraph</p>
  <hr style="clear: both;" />