mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
move subparsers to makehtml dir
This commit is contained in:
parent
eec56fb1c0
commit
dacddc6a48
@ -24,7 +24,7 @@ module.exports = function (grunt) {
|
||||
'src/showdown.js',
|
||||
'src/helpers.js',
|
||||
'src/converter.js',
|
||||
'src/subParsers/*.js',
|
||||
'src/subParsers/makehtml/*.js',
|
||||
'src/loader.js'
|
||||
],
|
||||
dest: 'dist/<%= pkg.name %>.js'
|
||||
|
3
dist/showdown.js
vendored
3
dist/showdown.js
vendored
@ -1,4 +1,4 @@
|
||||
;/*! showdown v 1.8.3 - 28-11-2017 */
|
||||
;/*! showdown v 1.8.3 - 05-12-2017 */
|
||||
(function(){
|
||||
/**
|
||||
* Created by Tivie on 13-07-2015.
|
||||
@ -184,6 +184,7 @@ function allOptionsOn () {
|
||||
|
||||
// load dependencies
|
||||
if (typeof document === 'undefined' && typeof window === 'undefined') {
|
||||
// JSDOM - acts as polyfill for window and document objects
|
||||
var jsdom = require('jsdom').jsdom,
|
||||
jsdomObj = jsdom('', {}),
|
||||
window = jsdomObj.defaultView, // jshint ignore:line
|
||||
|
2
dist/showdown.js.map
vendored
2
dist/showdown.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/showdown.min.js
vendored
2
dist/showdown.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/showdown.min.js.map
vendored
2
dist/showdown.min.js.map
vendored
File diff suppressed because one or more lines are too long
@ -4,6 +4,7 @@
|
||||
|
||||
// load dependencies
|
||||
if (typeof document === 'undefined' && typeof window === 'undefined') {
|
||||
// JSDOM - acts as polyfill for window and document objects
|
||||
var jsdom = require('jsdom').jsdom,
|
||||
jsdomObj = jsdom('', {}),
|
||||
window = jsdomObj.defaultView, // jshint ignore:line
|
||||
|
Loading…
x
Reference in New Issue
Block a user