aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add docs on resolver, clean feedLibravatar Titus Wormer2022-06-301-2/+1
|
* Add docs to image, link, and other media tokensLibravatar Titus Wormer2022-06-301-1/+1
|
* Fix a bunch of bugs with definitions, referencesLibravatar Titus Wormer2022-06-291-3/+3
| | | | | | | | | * Fix bug where whitespace after `:` was not allowed, it is * Fix bug where escapes in labels did not work due to typo * Fix to prefer first definition * Fix whitespace after definitions * Fix matching by adding normalizing * Fix reference from being output as data
* Add support for compiling definitionsLibravatar Titus Wormer2022-06-291-2/+1
|
* Refactor to externalize handlers of compilerLibravatar Titus Wormer2022-06-291-2/+2
|
* Add support for sharing identifiers, references before definitionsLibravatar Titus Wormer2022-06-291-0/+2
|
* Add some more crosslinks to docsLibravatar Titus Wormer2022-06-281-5/+2
|
* Add docs to label endLibravatar Titus Wormer2022-06-281-2/+3
|
* Add docs for label start (image, link)Libravatar Titus Wormer2022-06-281-1/+1
|
* Add docs for `RESOURCE_DESTINATION_BALANCE_MAX`Libravatar Titus Wormer2022-06-281-1/+1
|
* Add improved docs in compilerLibravatar Titus Wormer2022-06-281-1/+1
|
* Add link, images (resource)Libravatar Titus Wormer2022-06-241-8/+25
| | | | | | | | | | | | This is still some messy code that needs cleaning up, but it adds support for links and images, of the resource kind (`[a](b)`). References (`[a][b]`) are parsed and will soon be supported, but need matching. * Fix bug to pad percent-encoded bytes when normalizing urls * Fix bug with escapes counting as balancing in destination * Add `space_or_tab_one_line_ending`, to parse whitespace including up to one line ending (but not a blank line) * Add `ParserState` to share codes, definitions, etc
* Reorganize todo listLibravatar Titus Wormer2022-06-221-91/+90
|
* Update todoLibravatar Titus Wormer2022-06-221-1/+1
|
* Add docs on normalizing identifiers, matchingLibravatar Titus Wormer2022-06-221-2/+2
|
* Add support for normalizing identifiersLibravatar Titus Wormer2022-06-221-2/+3
|
* Add docs on encoding to definition, destinationLibravatar Titus Wormer2022-06-221-1/+1
|
* Rename `Whitespace` token to `SpaceOrTab`Libravatar Titus Wormer2022-06-221-1/+1
|
* Refactor to improve tokenizer, add docsLibravatar Titus Wormer2022-06-221-4/+3
|
* Add docs for token typesLibravatar Titus Wormer2022-06-221-1/+1
|
* Add docs for `subtokenize`Libravatar Titus Wormer2022-06-211-2/+2
|
* Add docs on virtual spaceLibravatar Titus Wormer2022-06-211-1/+1
|
* Add docs for `default_line_ending`Libravatar Titus Wormer2022-06-211-1/+1
|
* Add support for capping destination (raw) balanceLibravatar Titus Wormer2022-06-211-4/+1
|
* Add support for passing token types to destination, label, titleLibravatar Titus Wormer2022-06-211-1/+1
|
* Make data a constructLibravatar Titus Wormer2022-06-211-2/+2
|
* Refactor to move protocols to constantsLibravatar Titus Wormer2022-06-211-1/+1
|
* Refactor to improve a bunch of statesLibravatar Titus Wormer2022-06-211-2/+2
| | | | | | * Improve passing stuff around * Add traits to enums for markers and such * Fix “life time” stuff I didn’t understand
* Update todo listLibravatar Titus Wormer2022-06-211-11/+75
|
* Add support for inferring line ending, configurableLibravatar Titus Wormer2022-06-211-5/+7
| | | | | | * Rename `CompileOptions` to `Options` * Add support for an optional default line ending style * Add support for inferring the used line ending style
* Add support for BOMLibravatar Titus Wormer2022-06-201-1/+1
|
* Fix bug with tabsLibravatar Titus Wormer2022-06-201-2/+2
|
* Add support for line endings in stringLibravatar Titus Wormer2022-06-201-2/+2
|
* Add improved whitespace handlingLibravatar Titus Wormer2022-06-201-1/+1
| | | | | | * add several helpers for parsing betwen x and y `space_or_tab`s * use those helpers in a bunch of places * move initial indent parsing to flow constructs themselves
* Add paragraphLibravatar Titus Wormer2022-06-201-1/+3
|
* Remove unneeded `content` content typeLibravatar Titus Wormer2022-06-201-15/+10
|
* Remove unneeded `pub` keywordsLibravatar Titus Wormer2022-06-201-1/+1
|
* Add docs to destination, label, titleLibravatar Titus Wormer2022-06-201-1/+1
|
* Add support for definitionsLibravatar Titus Wormer2022-06-171-6/+11
| | | | | | * Add definitions * Add partials for label, destination, title * Add `go`, to attempt something, and do something else on `ok`
* Add heading (setext)Libravatar Titus Wormer2022-06-161-4/+4
|
* Add support for hard break (trailing)Libravatar Titus Wormer2022-06-161-4/+4
|
* Add support for hard break escapeLibravatar Titus Wormer2022-06-161-2/+4
|
* Add support for text in heading (atx)Libravatar Titus Wormer2022-06-151-1/+1
|
* Add code (text)Libravatar Titus Wormer2022-06-151-2/+2
|
* Update to enable some tests for added constructsLibravatar Titus Wormer2022-06-151-0/+2
|
* Update to dosLibravatar Titus Wormer2022-06-141-2/+2
|
* Reorganize to split utilLibravatar Titus Wormer2022-06-141-1/+1
|
* Add docs on constructs, bnfLibravatar Titus Wormer2022-06-141-1/+1
|
* Add docs for html (text)Libravatar Titus Wormer2022-06-141-2/+12
|
* Add support for sanitizing urlsLibravatar Titus Wormer2022-06-131-2/+2
| | | | | | * Add support for properly encoding characters in urls * Add support for sanitizing potentially dangerous urls * Add safe defaults, optionally live dangerously