Sha256: 945c7a63bdea939327878e125ed03e169472344cc3ff7b4b3d7661a74612595e
Contents?: true
Size: 1.69 KB
Versions: 5
Compression:
Stored size: 1.69 KB
Contents
# Markly A parser and abstract syntax tree for Markdown documents (CommonMark compatible) in Ruby. Originally forked from [CommonMarker](https://github.com/gjtorikian/commonmarker). It also includes extensions to the CommonMark spec as documented in the [GitHub Flavored Markdown spec](http://github.github.com/gfm/), such as support for tables, strikethroughs, and autolinking. [](https://github.com/ioquatix/markly/actions?workflow=Test) ## Motivation This code base was originally forked from [Commonmarker](https://github.com/gjtorikian/commonmarker) before they switched from `cmark-gfm` (C) to `comrak` (Rust). The original implementation provided access to the abstract syntax tree (AST), which is useful for building tools on top of Markdown. The Rust implementation does not provide this functionality, and so this fork was created to continue to provide these (and more) features. ## Usage Please see the [project documentation](https://ioquatix.github.io/markly/) for more details. - [Getting Started](https://ioquatix.github.io/markly/guides/getting-started/index) - This guide explains now to install and use Markly. - [Abstract Syntax Tree](https://ioquatix.github.io/markly/guides/abstract-syntax-tree/index) - This guide explains how to use Markly's abstract syntax tree (AST) to parse and manipulate Markdown documents. ## Contributing We welcome contributions to this project. 1. Fork it. 2. Create your feature branch (`git checkout -b my-new-feature`). 3. Commit your changes (`git commit -am 'Add some feature'`). 4. Push to the branch (`git push origin my-new-feature`). 5. Create new Pull Request.
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
markly-0.10.0 | readme.md |
markly-0.9.1 | readme.md |
markly-0.9.0 | readme.md |
markly-0.8.1 | readme.md |
markly-0.8.0 | readme.md |