# showdowns **Repository Path**: jhuix888/showdowns ## Basic Information - **Project Name**: showdowns - **Description**: A lib that make markdown to html with some extensions of showdown.js. - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-04-16 - **Last Updated**: 2026-04-03 ## Categories & Tags **Categories**: markdown-utils **Tags**: None ## README

showdowns logo

Showdowns

[Showdowns](https://github.com/jhuix/showdowns) is a lib that make markdown to html with some extensions features(include more diagrams extensions) of showdown.js. > If you think the showdowns library can help you or also hope to encourage the author, click on the top right corner to give me a [Star](https://github.com/jhuix/showdowns)⭐️. ## Markdown To Html [Showdowns](https://github.com/jhuix/showdowns) can converte markdown content to html that using the [showdown.js](https://github.com/showdownjs/showdown). [Showdown](https://github.com/showdownjs/showdown) is a Javascript Markdown to HTML converter, based on the original works by John Gruber. Showdown can be used client side (in the browser) or server side (with NodeJs). For more information, refer to the following document: - [Showdowns Features Syntax](https://jhuix.github.io/showdowns) - [Showdown's Markdown Syntax](https://github.com/showdownjs/showdown/wiki/Showdown's-Markdown-syntax) - [Showdown Options](https://github.com/showdownjs/showdown/wiki/Showdown-options) ### Live Demo Editor —— `showdowns-editor` Check a live demo editor here https://jhuix.github.io/vue-showdowns-editor ### Table Extension - The following features are extended based on the showdown's table: - Cell spans over columns - Cell spans over rows (optional) - Omitted table header (optional) - Showdown's table cell style syntax has "-{2,}",":-{2,}",":-{2,}:","-{2,}:", means default (align left), align left, align center, and align right style | Return Code | Style | Value | DESC | | ----------- | :-----: | :----- | ---------: | | OK | int | 1 | Succeeded | | ERROR | int | 0 | Failed '\|' | | Return Code | Style | Value | DESC | | ----------- | :-----: | :----- | ---------: | | OK | int | 1 | Succeeded | | ERROR | int | 0 | Failed | - Colspan table "||" indicates cells being merged left. | Return Code | Style | Value | DESC | | ====== | :-----: | ===== | ===== | | **OK** | int | 1 | [Succeeded](https://www.baidu.com) | | ERROR | int | 0 || | ERROR || 0 ||
Return Code Style Value DESC
OK int 1 Succeeded
ERROR int 0
ERROR 0
- Rowspan table (optional: tablesRowspan) "^^" indicates cells being merged above. | Return Code | Style | Value | DESC | | ====== | :-----: | ===== | ===== | | ^^ || 1 | [Succeeded](https://www.baidu.com) | | ^^ || 0 || | ERROR | int | 0 || | ERROR || 0 || | ^^ || 0 ||
Return Code Style Value DESC
^^ 1 Succeeded
0
ERROR int 0
ERROR 0
0
- Headerless table (optional: tablesHeaderless) Table header can be eliminated. |--|--|--|--|--|--|--|--| |♜| |♝|♛|♚|♝|♞|♜| | |♟|♟|♟| |♟|♟|♟| |♟| |♞| | | | | | | |♗| | |♟| | | | | | | | |♙| | | | | | | | | |♘| | | |♙|♙|♙|♙| |♙|♙|♙| |♖|♘|♗|♕|♔| | |♖|
### Supporting some markdown extension features [Footnotes](https://jhuix.github.io/showdowns/?page=footnotes) [Directives](https://jhuix.github.io/showdowns/?page=directives) [CSS defined](https://jhuix.github.io/showdowns/?page=css) [Inline Image](https://jhuix.github.io/showdowns/?page=images) [Content Tabs](https://jhuix.github.io/showdowns/?page=content-tabs) [Page Tabs](https://jhuix.github.io/showdowns/?page=page-tabs) [Table of Contents](https://jhuix.github.io/showdowns/?page=toc) [LaTeX math and AsciiMath](https://jhuix.github.io/showdowns/?page=math) [Code Blocks Theme](https://jhuix.github.io/showdowns/?page=code-blocks) [Mermaid](https://jhuix.github.io/showdowns/?page=mermaid) [Plantuml](https://jhuix.github.io/showdowns/?page=plantuml) [Flowchart](https://jhuix.github.io/showdowns/?page=flowchart) [Network Sequence](https://jhuix.github.io/showdowns/?page=sequence) [Graphviz's dot](https://jhuix.github.io/showdowns/?page=viz) [Railroad diagrams](https://jhuix.github.io/showdowns/?page=railroad) [WaveDrom](https://jhuix.github.io/showdowns/?page=wavedrom) [Vega and Vega-Lite](https://jhuix.github.io/showdowns/?page=vega) [Echarts](https://jhuix.github.io/showdowns/?page=echarts) [ABCJS](https://jhuix.github.io/showdowns/?page=abc) [Kroki](https://jhuix.github.io/showdowns/?page=kroki) [Plotly](https://jhuix.github.io/showdowns/?page=plotly) [AntV Infographic](https://jhuix.github.io/showdowns/?page=antv) [ZenUML](https://jhuix.github.io/showdowns/?page=zenuml) See more information, refer to the following document: [Extensions Examples](https://jhuix.github.io/showdowns) ### Preview - View Extensions Examples is previewed as [Showdowns Features](https://jhuix.github.io/showdowns/) - View video [![demovideo](https://jhuix.github.io/showdowns/media/demo-video.jpg)](https://jhuix.github.io/showdowns/media/demo.mp4) ## Usage ### Installation 1. Using npm: npm install @jhuix/showdowns Note: add --save if you are using npm < 5.0.0 2. In a browser: put the following line into your HTML page \
or \: 3. In Node.js: For commonjs var showdowns = require('showdowns'); or import 'showdowns/dist/showdowns.core.min.css'; import showdowns from 'showdowns'; For umd var showdowns = require('showdowns/dist/showdowns.min.js'); or import 'showdowns/dist/showdowns.min.css'; import showdowns from 'showdowns/dist/showdowns.min.js'; 4. Support compress markdown content with zip. ### Quick Example #### Node var showdowns = require('showdowns'), showdowns.init() var text = '# hello, markdown!', showdowns.makeHtml(text).then(obj => { //Do something for 'obj.html' and 'obj.scripts' }); #### Browser Put the following line into your HTML page \
or \:
### Options #### defaultOptions Type: {showdown: object, plantuml: object, mermaid: object, katex: object, kroki: object, vega: object, toc: object, tex: object, shiki: object, gnuplot: object } Default options is described below: defaultOptions = { showdown: { flavor: 'github', mathEngine: 'mathjax', }, toc: { chapterNumber: true, title: '', toc: '[\\[【]Table[ -]Of[ -]Contents[\\]】]|[\\[【]目录[\\]】]|[\\[【]TOC[\\]】]|\\{\\{TOC\\}\\}' }, plantuml: { imageFormat: 'svg' }, mermaid: { theme: 'default' }, katex: { mathDelimiters: [ { left: '$$', right: '$$', display: true }, { left: '\\[', right: '\\]', display: true }, { left: "\\begin{equation}", right: "\\end{equation}", display: true }, { left: "\\begin{align}", right: "\\end{align}", display: true }, { left: "\\begin{alignat}", right: "\\end{alignat}", display: true }, { left: "\\begin{gather}", right: "\\end{gather}", display: true }, { left: "\\begin{CD}", right: "\\end{CD}", display: true }, { left: '\\(', right: '\\)', display: false }, { left: '@@', right: '@@', display: true, asciimath: true }, { left: "\\$", right: "\\$", display: false, asciimath: true } ]}, kroki: { serverUrl: 'kroki.io', imageFormat: 'svg' }, vega: { theme: 'vox' }, tex: { serverUrl: 'tex.io', buildType: 'pdflatex' }, shiki: { theme: 'ayu-dark' }, gnuplot: {}, pagetabs:{} }; - showdown: showdown options object `flavor` - [Flavor of showdown](https://github.com/showdownjs/showdown/blob/master/README.md#flavors), default is 'github'. `mathEngine` - Math render engine for 'mathjax' or 'katex', default is 'mathjax'. For more showdown options, refer to the following document: [Showdown Options](https://github.com/showdownjs/showdown/blob/master/README.md#options) - toc: table of content options object For more toc options: { chapterNumber: true, title: '', toc: '[\\[【]Table[ -]Of[ -]Contents[\\]】]|[\\[【]目录[\\]】]|[\\[【]TOC[\\]】]|\\{\\{TOC\\}\\}' } `chapterNumber` - Whether show chapter number such as '1.1.', default is true. `title` - Custom defined text content of title, default is empty string indicates auto recognition based on the language(such as '目录' on chinese, 'Table Of Contents' on other language). `toc` - Custom defined regex string of test for table of contents. - plantuml: plantuml options object For more plantuml options: { umlWebSite: "www.plantuml.com/plantuml", imageFormat: "svg" | "png" | "jpg", svgRender: (id:string, code:string, options: { count?: number }) => string } - mermaid: mermaid options object For more mermaid options, refer to the following document: [Mermaid Options](http://mermaid-js.github.io/mermaid/#/mermaidAPI) - katex: katex options object For more katex options, refer to the following document: [Katex AutoRender Options](https://katex.org/docs/autorender.html#api) [Katex Render Options](https://katex.org/docs/options.html) In addition, mathDelimiters is another format: { mathDelimiters: { texmath: { display: [ {left: "$$", right: "$$"}, {left: '\\[', right: '\\]'} ], inline: [ {left: '\\(', right: '\\)'} ] }, asciimath: { display: [ {left: "@@", right: "@@"}], inline: [ {left: "\\$ ", right: "\\$"}] } } } - kroki: kroki options object For more kroki options: { serverUrl: "kroki.io", imageFormat: "svg", svgRender: (id:string, code:string, options: { diagramType: string, imageFormat: string }) => string } - vega: vega-embed options object For more vega-embed options, refer to the following document: [Vega-embed Options](https://github.com/vega/vega-embed#options) - shiki: shiki options object For more shiki options: { theme: "ayu-dark" } The theme of shiki see [ShiKi Style](https://shiki.style/themes). - tex: tex options object For more tex options: { serverUrl: "tex.io", buildType: "pdflatex", svgRender: (id:string, code:string, options: { build: string, zoom?: number, width?: string, height?: string }) => string } - gnuplot: gnuplot options object For more gnuplot options: { svgRender: (id:string, code:string) => string } - pagetabs: page tabs options object For more page tabs options: { pageRender: (pageSide: string | HTMLELement) => void } #### defaultExtensions Type: Array of showdown extensions Default extensions is described below: defaultExtensions = { 'showdown-toc': showdownToc(options.toc), 'showdown-image': showdownImage(), 'showdown-align': showdownAlign(), 'showdown-footnotes': showdownFootnotes(), 'showdown-content-tabs': showdownContentTabs(), 'showdown-page-tabs': showdownPageTabs(), 'showdown-directive': showdownDirective(), 'showdown-sequence': showdownSequence() } For more showdown extensions, refer to the following document: [Showdown Extensions](https://github.com/showdownjs/showdown/blob/master/README.md#extensions) #### defaultAsyncExtensions Type: Array of showdown async extensions Default async extensions is described below: defaultAsyncExtensions = { 'showdown-toc': getExtension('showdown-toc', showdownToc), 'showdown-image': showdownAsyncImage(), 'showdown-plantuml': showdownPlantuml(plantumlOptions), 'showdown-mermaid': showdownMermaid(mermaidOptions), 'showdown-mathjax': showdownMathJax(mathjaxOptions), 'showdown-tex': showdownTex(texOptions), 'showdown-katex': showdownKatex(katexOptions), 'showdown-kroki': showdownKroki(krokiOptions), 'showdown-flowchart': showdownFlowchart(), 'showdown-viz': showdownViz(), 'showdown-vega': showdownVega(vegaOptions), 'showdown-wavedrom': showdownWavedrom(), 'showdown-railroad': showdownRailroad(), 'showdown-abc': showdownAbc(), 'showdown-echarts': showdownEcharts(), 'showdown-gnuplot': showdownShiki(gnuplotOptions), 'showdown-antv': showdownAntV(), 'showdown-zenuml': showdownZenuml(), 'showdown-sequence': getExtension('showdown-sequence', showdownSequence), 'showdown-content-tabs': showdownAsyncContentTabs(), 'showdown-page-tabs': showdownAsyncPageTabs(pagetabsOptions), 'showdown-shiki': showdownShiki(shikiOptions), 'showdow-css': showdownCss(), } ### Properties #### showdown Type: showdown Default: showdown Output showdown.js native object for global. #### convertor Type: showdown.convertor | null Default: null Output showdown.convertor native object in current showdowns Instance. #### eventBus Type: EventBus Default: EventBus A internal event bus object, its method is as follows: - on(event: string, callback: (...args: any[]) => any) -- Register event method - off(event: string, callback: (...args: any[]) => any) -- Close event method - emit(event: string, ...data: ...any[]) => number -- Emit event method ### Methods #### onEvent Type: {event: string, callback: (...args: any[]) => any} => void Register event to showdowns engine. Currently supporting the following events: - 'resetImagePath': (id: string, src: string, callback: (imagePath: string) => void) -- Reset image path event for inline image #### setFlavor Type: {name: string} => void A function to add or update flavor of showdown and showdown.convertor. #### getMetaData Type: () => {parsed: object, raw: string, format: string} Get meta data of doc header. #### addOptions Type: {options: object} => void A function to add or update options of showdown and showdown.convertor. #### addExtension Type: \[name, extension] => void A function to add or update extension of showdown and showdown.convertor. #### removeExtension Type: \[name] => void A function to remove extension of showdown and showdown.convertor. #### addAyncExtension Type: \[name, extension] => void A function to add or update aync extension of showdowns. #### removeAyncExtension Type: \[name] => void A function to remove aync extension of showdowns. #### setCDN Type: (cdnname: string, defSheme: string, distScheme: string) => void A function to set cdn source when dynamically load js lib files related to more showdown diagrams extension. - Parameter `cdnname` can be selected 'local' or 'cdnjs' or 'jsdelivr' source. - Parameter `defSheme` is default prefix scheme string of source url. - Parameter `distScheme` is dist prefix scheme string of source url that has prefix string is '../dist/'. #### setShowdownFlavor Type: (name: string) => void A function to set default flavor of showdown. When showdown.convertor instance be created, it can update flavor of the showdown and convertor.convertor. See [showdown options of defaultOptions](#defaultoptions). - flavor field value: ['github', 'ghost', 'vanilla', 'original', 'allon'], default set to 'github' flavor. #### setShowdownOptions Type: (options: object) => object A function to set default options of showdown. When showdown.convertor instance be created, it can update options of the showdown and convertor.convertor. See [showdown options of defaultOptions](https://shiki.style/themes). #### setLanuageTheme Type: (theme: string) => object A function to set default theme of [ShiKi](https://github.com/shikijs/shiki). When showdown.convertor instance be created, it can update options of the showdown and convertor.convertor. See [ShiKi Style](https://shiki.style/themes). #### setExtensionlOptions Type: (name: string, options: object) => boolean A function to set default options of extension. It can reset new options of extension. - Parameter `name` is suffix name of extension name, such as `showdown-[name]`. See [options of extension](#defaultoptions). #### setPlantumlOptions Type: (options: object) => object A function to set default options of plantuml extension. When showdown.convertor instance be created, it can reset plantuml extension using the new default options. See [plantuml options of defaultOptions](#defaultoptions). - imageFormat field value: "svg" | "png" | "jpg", default 'png'. #### setMermaidOptions Type: (options: object) => object A function to set default options of mermaid extension. When showdown.convertor instance be created, it can reset mermaid extension using the new default options. See [mermaid options of defaultOptions](#defaultoptions). - mermaid theme field value be selected in ['default', 'forest', 'dark', 'neutral']; When it be set empty, default set to 'default' theme. #### setKatexOptions Type: (options: object) => object A function to set default options of katex extension. When showdown.convertor instance be created, it can reset katex extension using the new default options. See [katex options of defaultOptions](#defaultoptions). #### setKrokiOptions Type: (options: object) => object A function to set default options of kroki extension. When showdown.convertor instance be created, it can reset kroki extension using the new default options. See [Kroki options of defaultOptions](#defaultoptions). #### setVegaOptions Type: (options: object) => object A function to set default options of vega extension. When showdown.convertor instance be created, it can reset vega extension using the new default options. See [vega-embed options of defaultOptions](#defaultoptions). - vega theme field value be selected in ['excel', 'ggplot2', 'quartz', 'vox', 'dark']; When it be set empty, default set to 'vox' theme. #### init Type: (reset?: boolean | {option: boolean, extension: boolean}) => showdonws A function to init that be created showdown.convertor instance or update default showdown options of the showdown.convertor and reset the extensions using default extension options(as mermaid options, vega options, plantul options) for showdowns. - Parameter `reset`: After showdown.convertor instance be created; If `option` of reset object is ture, you update default showdown options; If `extension` of reset object is ture, reset the extensions using default extension options(as mermaid options, vega options, plantul options); If `reset` is true, same as value is `{option: true, extension: true}`. #### makeHtml Type: interface script { outer?:[{ name:string, src:string, module?:boolean|'import'|'link' }], id?:string, code?:string, module?:boolean, host?:string | HTMLElement inner?:[{ id:string, code:string, module?:boolean, host?:string | HTMLElement }] } Type: interface csslink { id: string, link: string } Type: ({ type:'zip', content: string, output: 'dom', exclusive: boolean, pageRender: (pageId: string) => void } | string) => Promise\<{ html: string | HTMLElement[], scripts: script[], cssLinks: csslink[] }> A async function to make markdown to html that showdown.convertor converte it in current showdowns instance. #### completedHtml Type: ( scripts?: script[] | string, scriptContainer?: HTMLElement | string) => Promise\ A async function to completed markdown to html that append scripts to dom. #### zDecode Type: (data: string) => string A function to decode data that be encoded using [zEncode](#zencode). #### zEncode Type: (content: string) => string A function to encode content with zlib. ## License [MIT](https://github.com/jhuix/showdowns/blob/master/LICENSE) Copyright (c) 2019-present, [Jhuix](mailto:jhuix0117@gmail.com) (Hui Jin)