I am trying no nest codeBlock (or html), but I am unable to do this for the root level indentation:
import { codeBlock } from 'common-tags';
const bc = () => codeBlock`
B
C
`;
const a = () => codeBlock`
A
${bc()}
${bc()}
`;
console.log(a());
gives me
but I would expect it to be: