underscore
export declare function underscore<C extends string>(content: C): `__${C}__`;
export declare function underscore<C extends string>(content: C): `__${C}__`;
Formats the content into underscored text.
Name | Constraints | Optional | Default | Description |
---|---|---|---|---|
C | string | No | This is inferred by the supplied content |
Name | Type | Optional | Description |
---|---|---|---|
content | C | No | The content to wrap |