gitextract_min7gahu/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── documentation.yml ├── .gitignore ├── Changelog.md ├── LICENSE.md ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Resources/ │ ├── CommonMarkSpecTests.swift.gyb │ └── camelcase.awk ├── Sources/ │ └── CommonMark/ │ ├── Nodes/ │ │ ├── Block/ │ │ │ ├── BlockQuote.swift │ │ │ ├── CodeBlock.swift │ │ │ ├── HTMLBlock.swift │ │ │ ├── Heading.swift │ │ │ ├── List.swift │ │ │ ├── Paragraph.swift │ │ │ └── ThematicBreak.swift │ │ ├── Document.swift │ │ ├── Inline/ │ │ │ ├── Code.swift │ │ │ ├── Emphasis.swift │ │ │ ├── HardLineBreak.swift │ │ │ ├── Image.swift │ │ │ ├── Link.swift │ │ │ ├── RawHTML.swift │ │ │ ├── SoftLineBreak.swift │ │ │ ├── Strong.swift │ │ │ └── Text.swift │ │ └── Node.swift │ ├── Result Builders/ │ │ ├── ContainerOfBlocksBuilder.swift │ │ ├── ContainerOfInlineElementsBuilder.swift │ │ └── ListBuilder.swift │ ├── Supporting Types/ │ │ ├── Block.swift │ │ ├── Children.swift │ │ ├── Fragment.swift │ │ ├── Inline.swift │ │ ├── LineBreak.swift │ │ ├── Linked.swift │ │ ├── Literal.swift │ │ ├── Section.swift │ │ ├── Visitable.swift │ │ └── Visitor.swift │ └── Version.swift └── Tests/ ├── CommonMarkSpecTests/ │ ├── AtxHeadingsTests.swift │ ├── AutolinksTests.swift │ ├── BackslashEscapesTests.swift │ ├── BlankLinesTests.swift │ ├── BlockQuotesTests.swift │ ├── CodeSpansTests.swift │ ├── EmphasisAndStrongEmphasisTests.swift │ ├── EntityAndNumericCharacterReferencesTests.swift │ ├── FencedCodeBlocksTests.swift │ ├── HardLineBreaksTests.swift │ ├── HtmlBlocksTests.swift │ ├── ImagesTests.swift │ ├── IndentedCodeBlocksTests.swift │ ├── InlinesTests.swift │ ├── LinkReferenceDefinitionsTests.swift │ ├── LinksTests.swift │ ├── ListItemsTests.swift │ ├── ListsTests.swift │ ├── ParagraphsTests.swift │ ├── PrecedenceTests.swift │ ├── RawHtmlTests.swift │ ├── SetextHeadingsTests.swift │ ├── SoftLineBreaksTests.swift │ ├── TabsTests.swift │ ├── TextualContentTests.swift │ └── ThematicBreaksTests.swift ├── CommonMarkTests/ │ ├── CommonMarkBuilderTests.swift │ ├── CommonMarkTests.swift │ ├── ContainerManipulationTests.swift │ ├── DocumentTests.swift │ ├── Fixtures.swift │ ├── NodeTests.swift │ ├── ProtocolTests.swift │ ├── StatisticsVisitor.swift │ └── VisitorTests.swift └── LinuxMain.swift