File: link_nofollow.text

package info (click to toggle)
python-markdown2 2.3.7-2%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,952 kB
  • sloc: python: 2,790; makefile: 35
file content (25 lines) | stat: -rw-r--r-- 576 bytes parent folder | download | duplicates (5)
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
[link](http://example.com)

[foo](http://example.com/test#fragment)

[bar](#fragment)

Pre-block:

    Here is a raw link:
    <a href="http://example.com/one">one</a>

<p>Raw HTML links:
<a href="http://example.com/two">two</a>
<a href="http://example.com/three" rel="nofollow">three</a>
<a href="http://example.com/four" rel="foo">four</a>
<a>five</a>
<a href="//example.com/six">six</a>
<A HREF="http://example.com/seven">seven</A>
<a foo=bar href="http://example.com/eight">eight</a>
<a href="http://example.com/test#fragment">nine</a>
<a href="#fragment">ten</a>
</p>