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

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
yuin avatar

yuin/goldmark

0
View on GitHub↗
4,860 estrellas·293 forks·Go·MIT·3 vistas

Goldmark

Goldmark es un parser y renderizador de Markdown escrito en Go que convierte texto Markdown a HTML o XHTML. Implementa la especificación CommonMark para garantizar un comportamiento de análisis consistente.

El proyecto utiliza un registro de extensiones modular, permitiendo la adición de sintaxis personalizada como tablas, listas de tareas y notas al pie. También incluye soporte especializado para idiomas CJK para manejar reglas específicas de salto de línea y énfasis para caracteres chinos, japoneses y coreanos.

La librería analiza el texto en un árbol de sintaxis abstracta (AST) para el análisis y modificación programática de documentos. Sus capacidades incluyen el enlace automático de URLs y correos electrónicos, formateo de puntuación tipográfica y la asignación de atributos personalizados a los elementos.

Features

  • CommonMark Compliant Parsers - Provides a parser that strictly adheres to the CommonMark specification for consistent markdown processing.
  • Extended Syntax Renderers - Supports non-standard markdown features such as tables, task lists, and footnotes via modular extensions.
  • Markdown AST Parsing - Converts raw markdown strings into an abstract syntax tree for programmatic analysis and modification.
  • Markdown to HTML Converters - Transforms compliant markdown plaintext into structured HTML output for web display.
  • Markdown to HTML Renderers - Generates compliant HTML or XHTML output from parsed markdown content with configurable security settings.
  • Markdown AST Analysis - Enables programmatic analysis and modification of content by parsing markdown into a structured syntax tree.
  • Abstract Syntax Tree Parsing - Implements a structured abstract syntax tree to allow programmatic manipulation of markdown content before rendering.
  • Extension Registries - Ships a registry for injecting custom syntax rules and rendering logic into the parser and renderer.
  • Markdown Parser Extensions - Provides pluggable components to add custom block and inline parsing logic for tables and footnotes.
  • Recursive Descent Parsers - Utilizes recursive descent parsing to analyze text by breaking it into nested blocks and inline elements.
  • Two-Phase Compilation - Employs a two-phase process to first build the document structure and then resolve references for rendering.
  • Interface-Based Decoupling - Decouples document structure from output formats by using abstract interfaces to map nodes to targets.
  • CJK Text Formatters - Adjusts line-breaking and emphasis rules specifically for the correct rendering of Chinese, Japanese, and Korean characters.
  • Text Processing - Extensible Markdown parser.

Historial de estrellas

Gráfico del historial de estrellas de yuin/goldmarkGráfico del historial de estrellas de yuin/goldmark

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Alternativas open-source a Goldmark

Proyectos open-source similares, clasificados según cuántas características comparten con Goldmark.
  • lunet-io/markdigAvatar de lunet-io

    lunet-io/markdig

    5,257Ver en GitHub↗

    Markdig is a high-performance Markdown processor for .NET applications that converts Markdown text into HTML or other target formats. It is a CommonMark compliant parser and extensible engine that can transform Markdown into a searchable and manipulatable abstract syntax tree. The library provides a framework for adding custom syntax and rendering logic through a modular pipeline of parsers and renderers. It supports native ahead-of-time compilation and trimming to minimize binary size. Capabilities include the generation of structured HTML with custom attributes and styling, the extraction

    C#
    Ver en GitHub↗5,257
  • evilstreak/markdown-jsAvatar de evilstreak

    evilstreak/markdown-js

    7,679Ver en GitHub↗

    markdown-js is a JavaScript markdown parser and converter that transforms markdown text into HTML output. It functions as both a library and a command line interface tool for converting documents. The project is centered on an abstract syntax tree representation, allowing markdown to be parsed into a structured tree for programmatic inspection and modification before the final rendering process. This intermediate representation enables custom markup processing and document transformations. The toolset covers programmatic document parsing, static site generation, and CLI-based file processing

    JavaScript
    Ver en GitHub↗7,679
  • russross/blackfridayAvatar de russross

    russross/blackfriday

    5,614Ver en GitHub↗

    Blackfriday is a Go library for parsing and converting Markdown text into HTML, LaTeX, and other structured formats. It functions as an extensible Markdown processor that transforms syntax into target markup languages. The project is distinguished by its pluggable rendering architecture, which allows for the production of diverse output targets such as Slack message styles, Confluence Wiki Markup, and GitHub Flavored Markdown. It supports custom syntax extensions including definition lists, footnotes, autolinks, and strikethroughs. The processor includes utilities for generating automatic ta

    Go
    Ver en GitHub↗5,614
  • xoofx/markdigAvatar de xoofx

    xoofx/markdig

    5,127Ver en 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

    C#commonmarkcommonmark-parsingcsharp
    Ver en GitHub↗5,127
Ver las 30 alternativas a Goldmark→

Preguntas frecuentes

¿Qué hace yuin/goldmark?

Goldmark es un parser y renderizador de Markdown escrito en Go que convierte texto Markdown a HTML o XHTML. Implementa la especificación CommonMark para garantizar un comportamiento de análisis consistente.

¿Cuáles son las características principales de yuin/goldmark?

Las características principales de yuin/goldmark son: CommonMark Compliant Parsers, Extended Syntax Renderers, Markdown AST Parsing, Markdown to HTML Converters, Markdown to HTML Renderers, Markdown AST Analysis, Abstract Syntax Tree Parsing, Extension Registries.

¿Qué alternativas de código abierto existen para yuin/goldmark?

Las alternativas de código abierto para yuin/goldmark incluyen: lunet-io/markdig — Markdig is a high-performance Markdown processor for .NET applications that converts Markdown text into HTML or other… evilstreak/markdown-js — markdown-js is a JavaScript markdown parser and converter that transforms markdown text into HTML output. It functions… russross/blackfriday — Blackfriday is a Go library for parsing and converting Markdown text into HTML, LaTeX, and other structured formats.… xoofx/markdig — Markdig is a markdown parser library that converts text into structured HTML, plain text, or other formats using a… jonschlinkert/remarkable — Remarkable is an extensible Markdown parser library that implements the CommonMark specification and supports GitHub… vmg/redcarpet — Redcarpet is a security-focused Markdown to HTML parser and customizable renderer. It transforms Markdown text into…