style: remove backticks from codespans
This commit is contained in:
parent
3e530f2a03
commit
75a87218b0
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ export async function renderMarkdown(
|
|||
strong: (children) => chalk.bold(children),
|
||||
emphasis: (children) => chalk.italic(children),
|
||||
strikethrough: (children) => chalk.grey.strikethrough(children),
|
||||
codespan: (children) => chalk.bgWhite.black(`\`${children}\``),
|
||||
codespan: (children) => chalk.bgWhite.black(` ${children} `),
|
||||
link: (children, { href }) =>
|
||||
chalk.blueBright.underline(terminalLink(children, href)),
|
||||
image: () => "",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue