Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: markedjs/marked
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3a81bde4eb21f2eef432d4bf2ca9b2d58ef0ccf4
Choose a base ref
...
head repository: markedjs/marked
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ae01170085e89ccd85c233547011eb88420a90cf
Choose a head ref
Loading
Showing with 9,845 additions and 8,024 deletions.
  1. +1 −0 .gitattributes
  2. +5 −1 .github/workflows/tests.yml
  3. +9 −0 .releaserc.json
  4. +3 −3 Makefile
  5. +14 −1 README.md
  6. +66 −67 bin/{marked → marked.js}
  7. +1 −1 bower.json
  8. +8 −6 build-docs.js
  9. +2 −2 component.json
  10. +23 −4 docs/INDEX.md
  11. +1 −1 docs/PUBLISHING.md
  12. +15 −11 docs/USING_ADVANCED.md
  13. +59 −56 docs/USING_PRO.md
  14. +4 −4 docs/demo/demo.js
  15. +0 −1 index.js
  16. +1 −0 jasmine.json
  17. +2,931 −0 lib/marked.cjs
  18. +440 −535 lib/marked.esm.js
  19. +468 −517 lib/{marked.js → marked.umd.js}
  20. +5 −24 man/marked.1
  21. +21 −31 man/marked.1.txt
  22. +2 −2 marked.min.js
  23. +4,598 −5,851 package-lock.json
  24. +39 −30 package.json
  25. +0 −9 release.config.js
  26. +30 −3 rollup.config.js
  27. +51 −109 src/Lexer.js
  28. +15 −15 src/Parser.js
  29. +5 −5 src/Renderer.js
  30. +2 −2 src/Slugger.js
  31. +2 −2 src/TextRenderer.js
  32. +220 −183 src/Tokenizer.js
  33. +5 −9 src/defaults.js
  34. +16 −27 src/helpers.js
  35. +33 −25 src/marked.js
  36. +28 −36 src/rules.js
  37. +41 −44 test/bench.js
  38. +9 −9 test/helpers/helpers.js
  39. +30 −32 test/helpers/html-differ.js
  40. +14 −13 test/helpers/load.js
  41. +1 −1 test/rules.js
  42. +0 −1 test/specs/bug/adjacent_lists.html
  43. +0 −1 test/specs/bug/adjacent_lists.md
  44. +12 −24 test/specs/commonmark/commonmark.0.30.json
  45. +12 −24 test/specs/gfm/commonmark.0.30.json
  46. +3 −0 test/specs/new/autolink_after_link.html
  47. +6 −0 test/specs/new/autolink_after_link.md
  48. +8 −7 test/specs/new/def_blocks.html
  49. +7 −0 test/specs/new/em_strong_adjacent_mixed.html
  50. +7 −0 test/specs/new/em_strong_adjacent_mixed.md
  51. +1 −0 test/specs/new/em_strong_orphaned_nesting.html
  52. +1 −0 test/specs/new/em_strong_orphaned_nesting.md
  53. +10 −8 test/specs/new/list_paren_delimiter.html
  54. +1 −0 test/specs/new/list_paren_delimiter.md
  55. +0 −4 test/specs/new/main.html
  56. +0 −55 test/specs/new/main.md
  57. +26 −0 test/specs/new/multiple_sub_lists.html
  58. +15 −0 test/specs/new/multiple_sub_lists.md
  59. +16 −0 test/specs/new/space_after_table.html
  60. +8 −0 test/specs/new/space_after_table.md
  61. +38 −0 test/specs/new/tab_newline.html
  62. +12 −0 test/specs/new/tab_newline.md
  63. +1 −1 test/specs/new/table_cells.html
  64. +38 −0 test/specs/new/table_following_text.html
  65. +15 −0 test/specs/new/table_following_text.md
  66. +4 −0 test/specs/redos/cubic_def.cjs
  67. 0 test/specs/redos/{quadratic_br.js → quadratic_br.cjs}
  68. 0 test/specs/redos/{quadratic_email.js → quadratic_email.cjs}
  69. 0 test/specs/redos/{quadratic_heading.js → quadratic_heading.cjs}
  70. +4 −0 test/specs/redos/quadratic_lists.cjs
  71. 0 test/specs/redos/{quadratic_underscores.js → quadratic_underscores.cjs}
  72. +1 −0 test/specs/redos/reflink_redos.html
  73. +3 −0 test/specs/redos/reflink_redos.md
  74. +7 −4 test/specs/run-spec.js
  75. +224 −116 test/unit/Lexer-spec.js
  76. +22 −14 test/unit/Parser-spec.js
  77. +105 −73 test/unit/marked-spec.js
  78. +15 −15 test/update-specs.js
  79. +5 −5 test/vuln-regex.js
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
* eol=lf
test/* linguist-vendored

6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
# lowest verison here should also be in `engines` field
node_version: [10, 12, 'lts/*', 'node']
node_version: [12, 'lts/*', 'node']
runs-on: ubuntu-latest
steps:
- name: Checkout Code
@@ -47,6 +47,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Node
uses: dcodeIO/setup-node-nvm@master
with:
node-version: 'lts/*'
- name: Install Dependencies
run: npm ci
- name: Build 🗜️
9 changes: 9 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
all:
@cp lib/marked.js marked.js
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.js
@cp lib/marked.cjs marked.cjs
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.cjs

clean:
@rm marked.js
@rm marked.cjs
@rm marked.min.js

bench:
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -29,6 +29,12 @@ Also read about:
* [Options](https://marked.js.org/#/USING_ADVANCED.md)
* [Extensibility](https://marked.js.org/#/USING_PRO.md)

## Compatibility

**Node.js:** Only [current and LTS](https://nodejs.org/en/about/releases/) Node.js versions are supported. End of life Node.js versions may become incompatible with Marked at any point in time.

**Browser:** Not IE11 :)

## Installation

**CLI:** `npm install -g marked`
@@ -41,14 +47,21 @@ Also read about:

**CLI**


``` bash
# Example with stdin input
$ marked -o hello.html
hello world
^D
$ cat hello.html
<p>hello world</p>
```

```bash
# Print all options
$ marked --help
```

**Browser**

```html
@@ -63,7 +76,7 @@ $ cat hello.html
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
document.getElementById('content').innerHTML =
marked('# Marked in the browser\n\nRendered by **marked**.');
marked.parse('# Marked in the browser\n\nRendered by **marked**.');
</script>
</body>
</html>
133 changes: 66 additions & 67 deletions bin/marked → bin/marked.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -5,16 +5,17 @@
* Copyright (c) 2011-2013, Christopher Jeffrey (MIT License)
*/

const fs = require('fs'),
path = require('path'),
marked = require('../');
import { promises } from 'fs';
import { marked } from '../lib/marked.esm.js';

const { readFile, writeFile } = promises;

/**
* Man Page
*/

function help() {
const spawn = require('child_process').spawn;
async function help() {
const { spawn } = await import('child_process');

const options = {
cwd: process.cwd(),
@@ -23,16 +24,24 @@ function help() {
stdio: 'inherit'
};

spawn('man', [path.resolve(__dirname, '../man/marked.1')], options)
.on('error', function() {
fs.readFile(path.resolve(__dirname, '../man/marked.1.txt'), 'utf8', function(err, data) {
if (err) throw err;
console.log(data);
});
});
const { dirname, resolve } = await import('path');
const { fileURLToPath } = await import('url');
const __dirname = dirname(fileURLToPath(import.meta.url));
const helpText = await readFile(resolve(__dirname, '../man/marked.1.txt'), 'utf8');

// eslint-disable-next-line promise/param-names
await new Promise(res => {
spawn('man', [resolve(__dirname, '../man/marked.1')], options)
.on('error', () => {
console.log(helpText);
})
.on('close', res);
});
}

function version() {
async function version() {
const { createRequire } = await import('module');
const require = createRequire(import.meta.url);
const pkg = require('../package.json');
console.log(pkg.version);
}
@@ -41,15 +50,15 @@ function version() {
* Main
*/

function main(argv, callback) {
const files = [],
options = {};
let input,
output,
string,
arg,
tokens,
opt;
async function main(argv) {
const files = [];
const options = {};
let input;
let output;
let string;
let arg;
let tokens;
let opt;

function getarg() {
let arg = argv.shift();
@@ -82,8 +91,6 @@ function main(argv, callback) {
while (argv.length) {
arg = getarg();
switch (arg) {
case '--test':
return require('../test').main(process.argv.slice());
case '-o':
case '--output':
output = argv.shift();
@@ -102,10 +109,10 @@ function main(argv, callback) {
break;
case '-h':
case '--help':
return help();
return await help();
case '-v':
case '--version':
return version();
return await version();
default:
if (arg.indexOf('--') === 0) {
opt = camelize(arg.replace(/^--(no-)?/, ''));
@@ -128,62 +135,57 @@ function main(argv, callback) {
}
}

function getData(callback) {
async function getData() {
if (!input) {
if (files.length <= 2) {
if (string) {
return callback(null, string);
return string;
}
return getStdin(callback);
return await getStdin();
}
input = files.pop();
}
return fs.readFile(input, 'utf8', callback);
return await readFile(input, 'utf8');
}

return getData(function(err, data) {
if (err) return callback(err);
const data = await getData();

data = tokens
? JSON.stringify(marked.lexer(data, options), null, 2)
: marked(data, options);
const html = tokens
? JSON.stringify(marked.lexer(data, options), null, 2)
: marked(data, options);

if (!output) {
process.stdout.write(data + '\n');
return callback();
}
if (output) {
return await writeFile(output, html);
}

return fs.writeFile(output, data, callback);
});
process.stdout.write(html + '\n');
}

/**
* Helpers
*/

function getStdin(callback) {
const stdin = process.stdin;
let buff = '';
function getStdin() {
return new Promise((resolve, reject) => {
const stdin = process.stdin;
let buff = '';

stdin.setEncoding('utf8');
stdin.setEncoding('utf8');

stdin.on('data', function(data) {
buff += data;
});
stdin.on('data', function(data) {
buff += data;
});

stdin.on('error', function(err) {
return callback(err);
});
stdin.on('error', function(err) {
reject(err);
});

stdin.on('end', function() {
return callback(null, buff);
});
stdin.on('end', function() {
resolve(buff);
});

try {
stdin.resume();
} catch (e) {
callback(e);
}
});
}

function camelize(text) {
@@ -204,12 +206,9 @@ function handleError(err) {
* Expose / Entry Point
*/

if (!module.parent) {
process.title = 'marked';
main(process.argv.slice(), function(err, code) {
if (err) return handleError(err);
return process.exit(code || 0);
});
} else {
module.exports = main;
}
process.title = 'marked';
main(process.argv.slice()).then(code => {
process.exit(code || 0);
}).catch(err => {
handleError(err);
});
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
"markup",
"html"
],
"main": "lib/marked.js",
"main": "lib/marked.cjs",
"license": "MIT",
"ignore": [
"**/.*",
14 changes: 8 additions & 6 deletions build-docs.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
const { mkdir, rmdir, readdir, stat, readFile, writeFile, copyFile } = require('fs').promises;
const { join, dirname, parse, format } = require('path');
const marked = require('./');
const { highlight, highlightAuto } = require('highlight.js');
const titleize = require('titleize');
import { promises } from 'fs';
import { join, dirname, parse, format } from 'path';
import { parse as marked } from './lib/marked.esm.js';
import { HighlightJS } from 'highlight.js';
import titleize from 'titleize';
const { mkdir, rm, readdir, stat, readFile, writeFile, copyFile } = promises;
const { highlight, highlightAuto } = HighlightJS;
const cwd = process.cwd();
const inputDir = join(cwd, 'docs');
const outputDir = join(cwd, 'public');
@@ -12,7 +14,7 @@ const getTitle = str => str === 'INDEX' ? '' : titleize(str.replace(/_/g, ' '))

async function init() {
console.log('Cleaning up output directory ' + outputDir);
await rmdir(outputDir, { recursive: true });
await rm(outputDir, { force: true, recursive: true });
await mkdir(outputDir);
await copyFile(join(cwd, 'LICENSE.md'), join(inputDir, 'LICENSE.md'));
const tmpl = await readFile(templateFile, 'utf8');
4 changes: 2 additions & 2 deletions component.json
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
"repo": "markedjs/marked",
"description": "A markdown parser built for speed",
"keywords": ["markdown", "markup", "html"],
"scripts": ["lib/marked.js"],
"main": "lib/marked.js",
"scripts": ["lib/marked.cjs"],
"main": "lib/marked.cjs",
"license": "MIT"
}
Loading