mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 12:33:45 +08:00
d609f8a53c
This reverts commit 40bcc6bbdc
.
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
import { default as PrettyText, buildOptions } from 'pretty-text/pretty-text';
|
|
|
|
QUnit.module("lib:details-cooked-test");
|
|
|
|
const defaultOpts = buildOptions({
|
|
siteSettings: {
|
|
enable_emoji: true,
|
|
emoji_set: 'emoji_one',
|
|
highlighted_languages: 'json|ruby|javascript',
|
|
default_code_lang: 'auto',
|
|
censored_words: 'shucks|whiz|whizzer'
|
|
},
|
|
getURL: url => url
|
|
});
|
|
|
|
|
|
test("details", assert => {
|
|
const cooked = (input, expected, text) => {
|
|
assert.equal(new PrettyText(defaultOpts).cook(input), expected.replace(/\/>/g, ">"), text);
|
|
};
|
|
cooked(`<details><summary>Info</summary>coucou</details>`,
|
|
`<details><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
|
"manual HTML for details");
|
|
cooked(` <details><summary>Info</summary>coucou</details>`,
|
|
`<details><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
|
"manual HTML for details with a space");
|
|
|
|
cooked(`<details open="open"><summary>Info</summary>coucou</details>`,
|
|
`<details open="open"><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
|
"open attribute");
|
|
|
|
cooked(`<details open><summary>Info</summary>coucou</details>`,
|
|
`<details open><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
|
"open attribute");
|
|
});
|