Skip to content

0.1.9

Pre-release
Pre-release
Compare
Choose a tag to compare
@shd101wyy shd101wyy released this 16 Jul 05:52
· 247 commits to master since this release
  • Upgraded mume to version 0.1.3.

    • Fixed pandoc export bug on Windows.
    • Fixed markdown export bug. Added ignore_from_front_matter option in markdown field. Removed front_matter option from markdown field.
    • Added latexEngine and enableExtendedTableSyntax config options. Now supporting merging table cells (disabled by default. Could be enabled from settings).
      #479, #133.

    screen shot 2017-07-15 at 8 16 45 pm

    • Supported export_on_save front-matter that exports files when you save your markdown file. However, phantomjs, prince, pandoc, ebook are not recommended for export_on_save because it's too slow.

    eg:

    ---
    export_on_save:
        html: true
        markdown: true
        prince: true
        phantomjs: true // or "pdf" | "jpeg" | "png" | ["pdf", ...] 
        pandoc: true
        ebook: true // or "epub" | "mobi" | "html" | "pdf" | array
    ---
    • Added embed_svg front-matter option for HTML export, which is enabled by default.
  • Fixed html export bug.