import { NgModule } from 'ng-metadata/core'; import { Converter } from 'showdown'; import * as showdown from 'showdown'; import { registerLanguage, highlightAuto } from 'highlight.js/lib/highlight'; import 'highlight.js/styles/vs.css'; const highlightedLanguages: string[] = require('./highlighted-languages.constant.json'); /** * A type representing a Markdown symbol. */ export type MarkdownSymbol = 'heading1' | 'heading2' | 'heading3' | 'bold' | 'italics' | 'bulleted-list' | 'numbered-list' | 'quote' | 'code' | 'link' | 'code'; /** * Type representing current browser platform. * TODO: Add more browser platforms. */ export type BrowserPlatform = "firefox" | "chrome"; /** * Constant representing current browser platform. Used for determining available features. * TODO Only rudimentary implementation, should prefer specific feature detection strategies instead. */ export const browserPlatform: BrowserPlatform = (() => { if (navigator.userAgent.toLowerCase().indexOf('firefox') != -1) { return 'firefox'; } else { return 'chrome'; } })(); /** * Dynamically fetch and register a new language with Highlight.js */ export const addHighlightedLanguage = (language: string): Promise<{}> => { return new Promise(async(resolve, reject) => { try { // TODO: Use `import()` here instead of `require` after upgrading to TypeScript 2.4 const langModule = require(`highlight.js/lib/languages/${language}`); registerLanguage(language, langModule); console.debug(`Language ${language} registered for syntax highlighting`); resolve(); } catch (error) { console.debug(`Language ${language} not supported for syntax highlighting`); reject(error); } }); }; /** * Showdown JS extension for syntax highlighting using Highlight.js. Will attempt to register detected languages. */ export const showdownHighlight = (): showdown.FilterExtension => { const htmlunencode = (text: string) => { return (text .replace(/&/g, '&') .replace(/</g, '<') .replace(/>/g, '>')); }; const left = '
]*>';
const right = '
';
const flags = 'g';
const replacement = (wholeMatch: string, match: string, leftSide: string, rightSide: string) => {
const language: string = leftSide.slice(leftSide.indexOf('language-') + ('language-').length,
leftSide.indexOf('"', leftSide.indexOf('language-')));
addHighlightedLanguage(language).catch(error => null);
match = htmlunencode(match);
return leftSide + highlightAuto(match).value + rightSide;
};
return {
type: 'output',
filter: (text, converter, options) => {
return (