Skip to content

Releases: blitzher/markdown-maker

1.10.4

26 Jun 14:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: v.1.10.0...1.10.4

v.1.10.0

24 Apr 10:35
Compare
Choose a tag to compare
  • Added better inclusion of files under directories, such that
<!-- main.md -->
Foo
#mdinclude<section>
<!-- section/section.md -->
Bar!

now properly resolves to

Foo
Bar!
  • Added command line argument mdparse init to paste a template of in the current working directory into .mdmconfig.json.
  • Improved testing and added more tests.

v.1.9.2

28 Oct 15:13
Compare
Choose a tag to compare

Rewrote commands to use regex, which simplifies extension making and lots of bugfixes.

v.1.8.3

10 Sep 09:42
Compare
Choose a tag to compare

Added features such as

  • Templates, included with #mdtemplate
  • Automatic page refresh for HTML output when compiling in watch-mode
  • Extension files, either global or project dependant for custom templates and commands

And of course bugfixes and more tests.

1.7.10

16 Oct 14:54
Compare
Choose a tag to compare

All tests passing, and bugfixing in regards to debugging and cltools.ts.
Pipeline set up to be integratable, and is integrated with mdmedit, which is WIP version of markdown-maker in the browser.

Full Changelog: v1.6.1...v.1.7.10

Typescript Rewrite

30 May 23:28
Compare
Choose a tag to compare

Parser has been translated to Typescript, and has the following new features:

  • Target compilation for Markdown or HTML, signaled by the Parser.opts.targetType option, when parsing. This allows for more advanced commands, as each command can be tailored for either HTML or markdown purposes.
  • #mdlabel<level,title> and #mdref<title> commands, where #mdlabel adds an empty span element with an id of title, and #mdref links to either a label or a header.
  • More tests to ensure the functionality of existing and new features, and small bugfixes.

v1.5.3

16 May 14:20
Compare
Choose a tag to compare

Fixed some bugs, and return to chokidar for file watching, since fs.watch is very inconsistent and poorly performing.

v1.4.1

21 Mar 20:48
Compare
Choose a tag to compare

now includes some basic traceback and error handling

1.4.1 -> fixed critical bug with #mdinclude regex

first tested release

15 Mar 10:30
Compare
Choose a tag to compare
1.3.8

added string input to parser, fixed clargs and missing symbol after v…