Skip to content
Snippets Groups Projects
Commit 295c9af0 authored by iaibrys's avatar iaibrys
Browse files

Lintfix updates to force container rebuild

parent bdbeafa5
Branches develop
No related tags found
No related merge requests found
Pipeline #430 passed
......@@ -89,7 +89,7 @@ export default function() {
math.push(block)
} else if (start) {
// Ignore inline maths that are actually multiline (fixes #136)
if (end == inline && block.charAt(0) == '\n') {
if (end === inline && block.charAt(0) === '\n') {
if (last) {
i = last;
processMath(start, i, unescape);
......@@ -329,4 +329,4 @@ export default function() {
/*jshint ignore:end */
window.mathJax = mathJax;
};
}
import renderPage from './render';
import { Feedback } from 'feedbackjs/dist/index';
import renderPage from './render';
window.Feedback = Feedback;
......
import mathJaxInit from './mathjax';
const Markdown = require('pagedown-extra/pagedown/Markdown.Converter');
window.Markdown = Markdown;
require('pagedown-extra/pagedown/Markdown.Editor'); // IIFE depending on window.Markdown
require('pagedown-extra/Markdown.Extra'); // IIFE depending on window.Markdown
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment