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

Changelog

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

  * New upstream version 1.7.0
  * Bump build-dependency golang-any (>= 2:1.19~) as per go.mod

 -- Anthony Fok <email address hidden>  Fri, 23 Feb 2024 18:38:27 -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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-yuin-goldmark_1.7.0-1.dsc 2.2 KiB e6fe1e94c7735e4b8e8d7e2e139d01fefbfa5f00e482217c85e85e7277446d2e
golang-github-yuin-goldmark_1.7.0.orig.tar.gz 246.1 KiB 07f887b06809aefe5806af3c33ce6299070f57cb726b1ad0302cc67717808286
golang-github-yuin-goldmark_1.7.0-1.debian.tar.xz 3.7 KiB 9f31cb312d93ddc6741319b1face0e907075b8afae9b3af960fb3305ab7e029e

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.