awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 repository-uri

Awesome GitHub RepositoriesTree-to-Text Serializers

Specialized components that convert a structured markdown abstract syntax tree back into a plain text string.

Distinct from Markdown Abstract Syntax Trees: Specifically focuses on the serialization side of the AST process, whereas the parent covers the general tree representation.

Explore 5 awesome GitHub repositories matching content management & publishing · Tree-to-Text Serializers. Refine with filters or upvote what's useful.

Awesome Tree-to-Text Serializers GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • remarkjs/remarkAvatar remarkjs

    remarkjs/remark

    8,911Vezi pe GitHub↗

    Remark is a markdown processor and transformer that converts markdown text into a structured JSON abstract syntax tree for programmatic manipulation. It functions as a plugin-based tool within the unified ecosystem, allowing users to parse, transform, and stringify markdown content. The project is distinguished by its extensibility through a plugin system that supports custom markdown syntax extensions, the introduction of new markup elements, and the definition of custom processing logic. This framework enables the modification of content through a visitor-pattern traversal of the syntax tre

    Converts structured abstract syntax trees back into plain markdown text strings.

    JavaScript
    Vezi pe GitHub↗8,911
  • xoofx/markdigAvatar xoofx

    xoofx/markdig

    5,127Vezi pe GitHub↗

    Markdig is a markdown parser library that converts text into structured HTML, plain text, or other formats using a configurable pipeline. It functions as a CommonMark compliant parser and an abstract syntax tree generator that transforms markdown into a hierarchical tree of block and inline nodes with precise source location mapping. The project is distinguished by a decoupled renderer architecture that separates parsing logic from output generation, enabling the transformation of the syntax tree into non-HTML formats such as LaTeX or XAML. It also serves as a lossless markdown processor by t

    Implements a mechanism to serialize the abstract syntax tree back into various text formats.

    C#commonmarkcommonmark-parsingcsharp
    Vezi pe GitHub↗5,127
  • dtolnay/synAvatar dtolnay

    dtolnay/syn

    3,292Vezi pe GitHub↗

    syn is a Rust syntax tree parser and token stream converter. It serves as a toolkit for procedural macro development, providing a framework to parse Rust source code into structured syntax trees for analysis and transformation. The project enables the manipulation of Rust abstract syntax trees through specialized visitor and folder patterns for traversing and mutating nodes. It provides a bidirectional mapping that allows developers to convert token streams into structured trees and print those trees back into tokens for code generation. The library covers a broad range of syntax analysis ca

    Transforms structured syntax tree nodes back into token streams for use in code generation.

    Rustproc-macro
    Vezi pe GitHub↗3,292
  • outline/rich-markdown-editorAvatar outline

    outline/rich-markdown-editor

    2,934Vezi pe GitHub↗

    Acest proiect este o componentă modulară de editare rich text pentru aplicații React, construită pe framework-ul ProseMirror. Oferă o interfață vizuală pentru compunerea și formatarea conținutului folosind markdown, menținând în același timp un model de document structurat care se serializează înapoi în cod markdown curat. Editorul este conceput pentru o extensibilitate ridicată, permițând dezvoltatorilor să injecteze comportamente și comenzi de formatare personalizate printr-o arhitectură bazată pe plugin-uri. Susține controlul granular asupra mediului de editare, inclusiv capacitatea de a suprascrie stilurile implicite, de a localiza textul interfeței și de a configura comportamente specifice, cum ar fi modurile read-only sau limitele de caractere. Sistemul include instrumente cuprinzătoare pentru gestionarea conținutului media bogat și interactiv, dispunând de callback-uri personalizate pentru upload-urile de fișiere și capacitatea de a înlocui tiparele de link-uri cu componente încorporate. De asemenea, expune interfețe programatice pentru interacțiunea cu documentul, permițând dezvoltatorilor să extragă metadate structurale, să gestioneze poziționarea cursorului și să sincronizeze schimbările de stare cu straturile externe de persistență a datelor.

    Converts markdown text into a structured node tree and serializes it back into clean markdown code.

    TypeScripteditorhacktoberfestjavascript
    Vezi pe GitHub↗2,934
  • syntax-tree/mdastAvatar syntax-tree

    syntax-tree/mdast

    1,441Vezi pe GitHub↗

    The project provides a standardized abstract syntax tree specification and utility library for parsing, transforming, and serializing markdown documents. It serves as a comprehensive document processing architecture that translates between raw text markup and structured node representations in both directions. The capability surface covers syntax parsing for extended markdown features, custom syntax extensions, metadata blocks, and embedded expressions, alongside document serialization that converts syntax trees back into standard and extended markup formats. It includes node modeling and val

    Converts syntax trees containing embedded expressions and component syntax back into serialized markdown documents.

    astmarkdownsyntax-tree
    Vezi pe GitHub↗1,441
  1. Home
  2. Content Management & Publishing
  3. Content Processing and Transformation
  4. Document Processing and Conversion
  5. Document Processing
  6. Format-Specific Parsers
  7. Markdown Abstract Syntax Trees
  8. Tree-to-Text Serializers

Explorează sub-etichetele

  • Strikethrough SerializationConverts abstract syntax tree nodes representing deleted text back into standard markdown strikethrough notation. **Distinct from Tree-to-Text Serializers:** Distinct from Tree-to-Text Serializers: specializes in outputting strikethrough syntax for deleted text nodes during document serialization.
  • Task List SerializationTransforms abstract syntax tree representations of task lists back into standard GitHub Flavored Markdown text format. **Distinct from Tree-to-Text Serializers:** Distinct from Tree-to-Text Serializers: serializes task list checkbox structures into standard GitHub Flavored Markdown format.
  • Token Stream SerializationComponents that serialize structured syntax trees back into token streams. **Distinct from Tree-to-Text Serializers:** Distinct from Tree-to-Text Serializers: targets tokens for macro expansion rather than plain text strings.