code-block-inside-quoteblock

CodeBlock inside a QuoteBlock is legal; only the > prefix is stripped (no additional space stripping)

§4.4

Input

> ```js
> const x = 1
> ```

Output AST

- type: QuoteBlock
  children:
    - type: CodeBlock
      language: js
      raw: const x = 1