Closed Pradhvan closed 3 years ago
Add code block tiptapy that converts the below JSON
tiptapy
{ "type": "doc", "content": [ { "type": "paragraph", "content": [ { "type": "text", "marks": [ { "type": "code" } ], "text": "PEP 20" }, { "type": "text", "text": " The Zen of Python" } ] }, { "type": "code_block", "content": [ { "type": "text", "text": "import this" } ] } ] }
to the following HTML
<p><code>PEP 20</code> The Zen of Python</p><pre><code>import this</code></pre>
The statement that generated this JSON in the editor is given below
PEP 20 The Zen of Python
PEP 20
import this
Add code block
tiptapy
that converts the below JSONto the following HTML
The statement that generated this JSON in the editor is given below
PEP 20
The Zen of Python