diff options
author | Andrew Tropin <andrew@trop.in> | 2023-02-14 16:30:50 +0400 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2023-02-14 17:08:36 +0400 |
commit | 5c0b86f741b2d6b0eebb7b99dd04282328c34b4c (patch) | |
tree | ac99a0d49ba9181fa75c308b5906ac4150122467 /gnu | |
parent | b6e27a24fe004fce679f6866afd8bd9db5fb16e5 (diff) | |
download | guix-5c0b86f741b2d6b0eebb7b99dd04282328c34b4c.tar.gz guix-5c0b86f741b2d6b0eebb7b99dd04282328c34b4c.zip |
gnu: Add tree-sitter-markdown.
gnu/packages/tree-sitter.scm (tree-sitter-markdown): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tree-sitter.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/tree-sitter.scm b/gnu/packages/tree-sitter.scm index 00bf4b1b3f..a1e10e5434 100644 --- a/gnu/packages/tree-sitter.scm +++ b/gnu/packages/tree-sitter.scm @@ -418,3 +418,16 @@ will be used in description and synopsis." "0bgd9g1j4ww45g0l0aa1jac49421z95cc2rhcgqmgx7nzn94rszp" "0.0.11" #:repository-url "https://github.com/sogaiu/tree-sitter-clojure")) + +(define-public tree-sitter-markdown + ;; No tags + (let ((commit "ef3caf83663ea97ad9e88d891424fff6a20d878d") + (revision "0")) + (tree-sitter-grammar + "markdown" "Markdown (CommonMark Spec v0.30)" + "0p9mxpvkhzsxbndda36zx5ycd6g2r2qs60gpx4y56p10lhgzlyqj" + "0.1.1" + #:repository-url "https://github.com/MDeiml/tree-sitter-markdown" + #:grammar-directories '("tree-sitter-markdown" + "tree-sitter-markdown-inline") + #:commit commit))) |