summaryrefslogtreecommitdiffstats
path: root/utils/markdown/text_range_test.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix invalid markdown text ranges (#9126)Adrian2018-07-181-3/+8
| | | second Range value is the end pos, not the length... :see_no_evil:
* Merge consecutive text nodes when inspecting markdown (#9112)Adrian2018-07-161-22/+22
| | | | | | | | | | | | | * Fix assertion order expected/actual were in wrong order, resulting in misleading output in case of failing tests * Merge consesutive markdown text nodes This ensures that parser quirks such as "hello!" being parsed as two separate nodes ("hello" and "!") are not exposed to code inspecting a markdown strings.
* Expose range information for markdown text nodes [WIP] (#9067)Adrian2018-07-111-0/+110
* Track positions of markdown text * Add tests for markdown text ranges