Re:
- github/markup#245
- https://github.com/gjtorikian/html-pipeline/blob/11cec3d43cab9f6beddd95bda40ad6ac654fe2f8/lib/html/pipeline/sanitization_filter.rb#L44-L95
WHITELIST = {
:elements => %w(
h1 h2 h3 h4 h5 h6 h7 h8 br b i strong em a pre code img tt
div ins del sup sub p ol ul table thead tbody tfoot blockquote
dl dt dd kbd q samp var hr ruby rt rp li tr td th s strike
),
:remove_contents => ['script'],
:attributes => {
'a' => ['href'],
'img' => ['src'],
'div' => ['itemscope', 'itemtype'],
:all => ['abbr', 'accept', 'accept-charset',
'accesskey', 'action', 'align', 'alt', 'axis',
'border', 'cellpadding', 'cellspacing', 'char',
'charoff', 'charset', 'checked', 'cite',
'clear', 'cols', 'colspan', 'color',
'compact', 'coords', 'datetime', 'dir',
'disabled', 'enctype', 'for', 'frame',
'headers', 'height', 'hreflang',
'hspace', 'ismap', 'label', 'lang',
'longdesc', 'maxlength', 'media', 'method',
'multiple', 'name', 'nohref', 'noshade',
'nowrap', 'prompt', 'readonly', 'rel', 'rev',
'rows', 'rowspan', 'rules', 'scope',
'selected', 'shape', 'size', 'span',
'start', 'summary', 'tabindex', 'target',
'title', 'type', 'usemap', 'valign', 'value',
'vspace', 'width', 'itemprop']
},
<b>
<i>
<strong>
<em>
<a>
<pre>
<code>
<img>
<ins>
<del>
<sup>
<sub>
<mark>
<abbr>
<p>
<ol>
<ul>
<li>
<b>Hello!</b>
: Hello!
<i>Hello!</i>
: Hello!
<strong>Hello!</strong>
: Hello!
<em>Hello!</em>
: Hello!
<a>Hello!</a>
: Hello!
<pre>Hello!</pre>
:
Hello!
<code>Hello!</code>
: Hello!
<img alt="A Warm Hello!" title="Hello, World!" src="https://i.imgur.com/MdueLu9.gif" width="64" />
:
<ins>Hello!</ins>
: Hello!
<del>Hello!</del>
: Hello!
Hello!<sup>Hello!</sup>
: Hello!Hello!
Hello!<sub>Hello!</sub>
: Hello!Hello!
<mark>Hello!</mark>
: Hello!
<abbr title="Hello World!">Hello!</abbr>
: Hello!
<p>Hello!</p>
:
Hello!
<ol><li>Hello!</li></ol>
:
- Hello!
<ul><li>Hello!</li></ul>
:
- Hello!
<h7>Hello!</h7>
<h8>Hello!</h8>
<br>Hello!</br>
<b>Hello!</b>
<i>Hello!</i>
<strong>Hello!</strong>
<em>Hello!</em>
<a>Hello!</a>
<pre>Hello!</pre>
<code>Hello!</code>
<tt>Hello!</tt>
<ins>Hello!</ins>
<del>Hello!</del>
<sup>Hello!</sup>
<sub>Hello!</sub>
<p>Hello!</p>
- <ol>Hello!</ol>
- <ul>Hello!</ul>
<table>Hello!</table>
<thead>Hello!</thead>
<tbody>Hello!</tbody>
<tfoot>Hello!</tfoot>
<blockquote>Hello!</blockquote>
- <dl>Hello!</dl>
<kbd>Hello!</kbd>
<q>Hello!</q>
<samp>Hello!</samp>
<var>Hello!</var>
<hr>Hello!</hr>
<ruby>Hello!</ruby>
<tr>Hello!</tr>
<td>Hello!</td>
<th>Hello!</th>
<s>Hello!</s>
<strike>Hello!</strike>
<caption>Hello!</caption>
<figure>Hello!</figure>
<figcaption>Hello!</figcaption>
<abbr>Hello!</abbr>
<bdo>Hello!</bdo>
<cite>Hello!</cite>
<dfn>Hello!</dfn>
<mark>Hello!</mark>
<small>Hello!</small>
<span>Hello!</span>
<time>Hello!</time>
<wbr>Hello!</wbr>