golang-github-yuin-goldmark 1.5.4-1 source package in Ubuntu

Changelog

golang-github-yuin-goldmark (1.5.4-1) unstable; urgency=medium

  * New upstream version 1.5.4

 -- Anthony Fok <email address hidden>  Wed, 08 Mar 2023 19:19:12 -0700

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-yuin-goldmark_1.5.4-1.dsc 2.2 KiB cd1e0743c1c6846210c3ca3c8de88843badd381a8ec7460f3c440114a1d7557b
golang-github-yuin-goldmark_1.5.4.orig.tar.gz 253.9 KiB edf3e0cd200745f67d2dd1cff3dc24fcbadd34d9fc4faef08f9ab0b4b514c103
golang-github-yuin-goldmark_1.5.4-1.debian.tar.xz 3.6 KiB aeee3ee9cb1dc832e81e9f6ed63dd77128bc3b346edfa47a862e048f6d4f3eeb

Available diffs

No changes file available.

Binary packages built by this source

golang-github-yuin-goldmark-dev: CommonMark compliant and extensible Markdown parser written in Go

 goldmark is a Markdown parser written in Go. It is easy to extend, standard
 compliant, and well structured. It is compliant with CommonMark 0.30,
 and supports extensions from GitHub Flavored Markdown and PHP Markdown Extra.
 .
 Features:
 .
  * Standard compliant. goldmark gets full compliance with the latest
    CommonMark spec.
  * Extensible. Do you want to add a @username mention syntax to Markdown?
    You can easily do it in goldmark. You can add your AST nodes, parsers
    for block level elements, parsers for inline level elements,
    transformers for paragraphs, transformers for whole AST structure, and
    renderers.
  * Performance. goldmark performs pretty much equally to cmark, the
    CommonMark reference implementation written in C.
  * Robust. goldmark is tested with go-fuzz, a fuzz testing tool.
  * Builtin extensions. goldmark ships with common extensions like tables,
    strikethrough, task lists, and definition lists.
  * Depends only on standard libraries.