Welcome to mirror list, hosted at ThFree Co, Russian Federation.

14-comment_in_text_in_script.json « cases « test « domhandler « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b69d04bd10836832eeb812a182fb0be10437569d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "name": "Comment within text within script",
  "options": {},
  "html": "<script>this is <!-- the comment --> the text</script>",
  "expected": [
    {
      "type": "script",
      "name": "script",
      "attribs": {},
      "children": [
        {
          "data": "this is <!-- the comment --> the text",
          "type": "text"
        }
      ]
    }
  ]
}