We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b3a607 commit 0913a18Copy full SHA for 0913a18
pdl-live-react/src/view/code/Code.tsx
@@ -12,6 +12,7 @@ export type SupportedLanguage =
12
| "javascript"
13
| "python"
14
| "plaintext"
15
+ | "ipython"
16
17
type Props = {
18
block: PdlBlock
pdl-live-react/src/view/code/PreviewLight.tsx
@@ -29,6 +29,7 @@ export default function PreviewLight({
29
SyntaxHighlighter.registerLanguage("json", json)
30
SyntaxHighlighter.registerLanguage("yaml", yaml)
31
SyntaxHighlighter.registerLanguage("python", python)
32
+ SyntaxHighlighter.registerLanguage("ipython", python)
33
SyntaxHighlighter.registerLanguage("javascript", js)
34
}, [])
35
0 commit comments