inlineCode
declare function inlineCode<C extends string>(content: C): `\`${C}\``;
declare function inlineCode<C extends string>(content: C): `\`${C}\``;
Wraps the content inside backticks, which formats it as inline code
Name | Constraints | Optional | Default | Description |
---|---|---|---|---|
C | string | No | None |
Name | Type | Optional | Description |
---|---|---|---|
content | C | No | The content to wrap |