mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
a914d3230b
Followup to 7d8974d02f
Co-authored-by: David Taylor <david@taylorhq.com>
20 lines
813 B
Ruby
20 lines
813 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe PrettyText do
|
|
describe "markdown it" do
|
|
it "can properly bake boxes" do
|
|
md = <<~MD
|
|
[],[ ],[x],[X] are all checkboxes
|
|
`[ ]` [x](hello) *[ ]* **[ ]** _[ ]_ __[ ]__ ~~[ ]~~ are not checkboxes
|
|
MD
|
|
|
|
html = <<~HTML
|
|
<p><span class="chcklst-box fa fa-square-o fa-fw"></span>,<span class="chcklst-box fa fa-square-o fa-fw"></span>,<span class="chcklst-box checked fa fa-square-check-o fa-fw"></span>,<span class="chcklst-box checked permanent fa fa-square-check fa-fw"></span> are all checkboxes<br>
|
|
<code>[ ]</code> <a>x</a> <em>[ ]</em> <strong>[ ]</strong> <em>[ ]</em> <strong>[ ]</strong> <s>[ ]</s> are not checkboxes</p>
|
|
HTML
|
|
cooked = PrettyText.cook(md)
|
|
expect(cooked).to eq(html.strip)
|
|
end
|
|
end
|
|
end
|