UNPKG
mdx-prompt
Version:
latest (0.4.3)
0.4.3
0.4.2
0.4.1
0.4.0
0.3.1
0.3.0
0.2.0
0.1.1
Use MDX to render high quality LLM prompts
github.com/edspencer/mdx-prompt
edspencer/mdx-prompt
mdx-prompt
/
dist
/
components
/
html.js
11 lines
•
285 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Overrides default HTML element renderings. *
@type
{
Object
} */
export
const
htmlComponents = {
p
:
(
props
) =>
props.
children
,
ul
:
(
props
) =>
props.
children
,
ol
:
(
props
) =>
props.
children
,
li
:
(
props
) =>
`-
${props.children}
`
, };
//# sourceMappingURL=html.js.map