Does a details tag stay as raw text inside a code block?
+0
−0
Does a <details>
tag stay as raw text inside a code block?
As 4 space indented text
Raw text:
<details><summary>hint</summary>surprise!</details>
Rendered as:
<details><summary>hint</summary>surprise!</details>
In backticks
Raw text:
```html
<details><summary>hint</summary>surprise!</details>
```
Rendered as:
<details><summary>hint</summary>surprise!</details>
As 4 space indented text with no blank line after the previous paragraph
Raw text:
Intro text:
<details><summary>hint</summary>surprise!</details>
Rendered as:
Intro text:
0 comment threads