#markup #tags #language #diagnostics

nightly no-std bin+lib markdoll

a structured and extensible markup language

8 stable releases (3 major)

new 4.1.1 May 8, 2025
4.1.0 Apr 16, 2025
3.0.3 Dec 7, 2024
3.0.0 Nov 22, 2024
0.1.1 Sep 7, 2024

#405 in Parser implementations

Download history 1/week @ 2025-02-08 31/week @ 2025-02-15 1/week @ 2025-03-15 240/week @ 2025-04-12 33/week @ 2025-04-19 7/week @ 2025-04-26 100/week @ 2025-05-03

380 downloads per month
Used in dollgen

MIT and GPL-3.0 licenses

110KB
3.5K SLoC

markdoll

MADE WITH MARKDOLL

markdoll is a structured and extensible markup language

its syntax is relatively simple, with anything more complicated than frontmatter, sections, lists, and text, being delegated to tags

to get an idea of the syntax, visit the repository

cargo features

  • cli-trace print tracing information for the cli

minimum supported rust version

this library requires features from rust 1.86

json output

stderr output when the --json flag is specified

unless --no-status is set, status update lines will be emitted to stderr

regardless of whether status updates are emitted, the final line will be the diagnostics

status updates

{
  "kind": "status-update",
  "stage": "parse", // the stage <parse|emit>
  "status": "success" // the new status of the stage <working|success|failure|written> (note written is only for emit stage)
}

order:

  • { "kind": "status-update", "stage": "parse", "status": "working" } - began parsing
  • { "kind": "status-update", "stage": "parse", "status": "<success|failure>" } - parsing succeeded/failed
  • { "kind": "status-update", "stage": "emit", "status": "working" } - began emitting
  • { "kind": "status-update", "stage": "emit", "status": "<success|failure>" } - emitting succeeded/failed
  • { "kind": "status-update", "stage": "emit", "status": "written" } - fully written output to stdout

diagnostics

{
  "kind": "diagnostics",
  "diagnostics": [ // array of diagnostics emitted during all stages that ran
    {
      "message": "unexpected indentation", // the user-readable message
      "code": "markdoll::lang::unexpected", // diagnostic code
      "severity": "error", // <advice|warning|error>
      "help": null, // helpful info, if applicable
      "url": null, // a relevant url, if applicable
      "labels": [ // array of all the labels of this diagnostics (there can be more than one)
        {
          "primary": false,
          "label": "expected any of: `&`", // the label of the span
          "location": "stdin:5:1"
        }
      ],
      "cause_chain": ["unexpected indentation"], // the chain of root causes
      "rendered": "markdoll::lang::unexpected\n\n  × unexpected indentation\n   ╭─[stdin:5:1]\n 4 │ \n 5 │     this is markdoll\n   · ──┬─\n   ·   ╰── expected any of: `&`\n 6 │ \n   ╰────\n" // the fully rendered diagnostic
    }
  ]
}

Dependencies

~7–17MB
~209K SLoC