blob: 26bc589a01e80d277f311f0452be20f29c4944ca (
plain) (
blame)
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
58
59
60
61
62
|
Across the site, sr.ht uses a consistent Markdown syntax based on Python's
[Markdown](https://pypi.python.org/pypi/Markdown) package, which implements John
Gruber's [original Markdown
specification](https://pypi.python.org/pypi/Markdown).
We then post-process the HTML to strip out unwanted tags and attributes.
## Tags
- `a`
- `abbr`
- `acronym`
- `b`
- `blockquote`
- `code`
- `div`
- `dd`
- `dl`
- `dt`
- `em`
- `h1`, `h2`, `h3`, `h4`, `h5`
- `i`
- `img`
- `input`
- `li`
- `ol`
- `p`
- `pre`
- `span`
- `strong`
- `table`
- `tbody`
- `thead`
- `td`
- `th`
- `tr`
- `ul`
## Attributes
We allow the `id` attribute on `h*` tags and the `class` attribute on all tags -
the only permitted values of `class` are:
- `row`
- `col-md-*`
- `form-control`
You may also specify the `style` tag, for which you may specify the following
attributes:
- `margin`
- `padding`
- `text-align`
- `font-weight`
- `text-decoration`
`input` elements may specify `type='checkbox'` as well as the `checked`
attribute.
`a` tags may specify `href` and `title`.
`abbr` and `acronym` tags may specify `title`.
|