forked from sgraber/markdown.superscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
57 lines (32 loc) · 1.66 KB
/
README
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# A Superscript Extension for Markdown
This extension adds the ability to add superscripts to Markdown documents.
## Usage
To superscript something, place a carat symbol, '^', before and after the
text that you would like in superscript: 6.02 x 10^23^
The '23' in this example will be superscripted. See below.
Examples:
>>> import markdown
>>> md = markdown.Markdown(extensions=['superscript'])
>>> md.convert('This is a reference to a footnote^1^.')
u'<p>This is a reference to a footnote<sup>1</sup>.</p>'
>>> md.convert('This is scientific notation: 6.02 x 10^23^')
u'<p>This is scientific notation: 6.02 x 10<sup>23</sup></p>'
>>> md.convert('This is scientific notation: 6.02 x 10^23. Note lack of second carat.')
u'<p>This is scientific notation: 6.02 x 10^23. Note lack of second carat.</p>'
>>> md.convert('Scientific notation: 6.02 x 10^23. Add carat at end of sentence.^')
u'<p>Scientific notation: 6.02 x 10<sup>23. Add a carat at the end of sentence.</sup>.</p>'
Paragraph breaks will nullify superscripts across paragraphs. Line breaks
within paragraphs will not.
Drop superscript.py into your /site-packages/markdown/extensions/ directory.
## Calling from Command Line
markdown.py FILENAME.md -x superscript --file=OUTPUTFILE.html
Where:
* FILENAME.md = valid Markdown file to convert
* '-x superscript' calls the extension
* OUTPUTFILE.html = the resulting HTML conversion of the Markdown file
## Script Information
Author: [Shane Graber][1]
Repository: [http://github.com/sgraber/markdown.superscript][2]
Date: 2010-07-29
[1]: sgraber-at-gmail-dot-com
[2]: http://github.com/sgraber/markdown.superscript