diff options
Diffstat (limited to 'web_src/js/markup/content.js')
-rw-r--r-- | web_src/js/markup/content.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/markup/content.js b/web_src/js/markup/content.js index e4ec3d0b4b..1d29dc07f2 100644 --- a/web_src/js/markup/content.js +++ b/web_src/js/markup/content.js @@ -1,7 +1,7 @@ import {renderMermaid} from './mermaid.js'; import {renderMath} from './math.js'; import {renderCodeCopy} from './codecopy.js'; -import {renderAsciinemaPlayer} from './asciicast.js'; +import {renderAsciicast} from './asciicast.js'; import {initMarkupTasklist} from './tasklist.js'; // code that runs for all markup content @@ -9,7 +9,7 @@ export function initMarkupContent() { renderMermaid(); renderMath(); renderCodeCopy(); - renderAsciinemaPlayer(); + renderAsciicast(); } // code that only runs for comments |