~ubuntu-branches/ubuntu/trusty/libtext-markdown-perl/trusty

« back to all changes in this revision

Viewing changes to t/MultiMarkdown.mdtest/Inline_HTML_(Simple).text

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, gregor herrmann, Nathan Handler
  • Date: 2009-08-26 11:14:08 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090826111408-p5lw469iekiybf4t
Tags: 1.0.25-1
[ Jonathan Yu ]
* New upstream release
  + MultiMarkdown is now removed from upstream package; it is now
    available as a separate standalone package
* Updated copyright information
* Added myself to Uploaders and Copyright
* Updated rules to new short format
* Updated control file description
* Standards-Version 3.8.3 (remove version dependency on perl)
* Install Markdown.pl as markdown, as before, but use overrides
* Add header for pod_name patch
* Remove .manpages file, they are installed automatically
* Suggest libtext-multimarkdown-perl (since it's a separate package now)
* Add libhtml-tidy-perl to B-D-I for testing
* Add a NEWS item for the libtext-multimarkdown-perl split

[ gregor herrmann ]
* debian/control: Added: ${misc:Depends} to Depends: field.

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Here's a simple block:
2
 
 
3
 
<div>
4
 
        foo
5
 
</div>
6
 
 
7
 
This should be a code block, though:
8
 
 
9
 
        <div>
10
 
                foo
11
 
        </div>
12
 
 
13
 
As should this:
14
 
 
15
 
        <div>foo</div>
16
 
 
17
 
Now, nested:
18
 
 
19
 
<div>
20
 
        <div>
21
 
                <div>
22
 
                        foo
23
 
                </div>
24
 
        </div>
25
 
</div>
26
 
 
27
 
This should just be an HTML comment:
28
 
 
29
 
<!-- Comment -->
30
 
 
31
 
Multiline:
32
 
 
33
 
<!--
34
 
Blah
35
 
Blah
36
 
-->
37
 
 
38
 
Code block:
39
 
 
40
 
        <!-- Comment -->
41
 
 
42
 
Just plain comment, with trailing spaces on the line:
43
 
 
44
 
<!-- foo -->   
45
 
 
46
 
Code:
47
 
 
48
 
        <hr />
49
 
        
50
 
Hr's:
51
 
 
52
 
<hr>
53
 
 
54
 
<hr/>
55
 
 
56
 
<hr />
57
 
 
58
 
<hr>   
59
 
 
60
 
<hr/>  
61
 
 
62
 
<hr /> 
63
 
 
64
 
<hr class="foo" id="bar" />
65
 
 
66
 
<hr class="foo" id="bar"/>
67
 
 
68
 
<hr class="foo" id="bar" >
69