File: DEVNOTES.md

package info (click to toggle)
elixir-earmark-parser 1.4.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,148 kB
  • sloc: makefile: 9
file content (31 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# TODOS

## Release 1.5.0

### For Lists

- Change `Block.List.blocks` to `Block.List.list_items`

- Remove `Block.List.lines`

- Remove `Block.List.spaced?`

- Refactor parser into a `ParagraphParser`?

# Definitions

## [Paragraph Continuation Text](https://github.github.com/gfm/#paragraph-continuation-text)

...is text that will be parsed as part of the content of a paragraph, but does not occur at the beginning of the paragraph.

Example:
```markdown
      
This is **not** a PCT
this is a PCT
```

## [Thematic Break](https://github.github.com/gfm/#thematic-breaks)

just what we scan as `Line.Ruler`
<!-- SPDX-License-Identifier: Apache-2.0-->