Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samwilson/commonmark-latex
A LaTeX renderer extension for the League\CommonMark package.
https://github.com/samwilson/commonmark-latex
commonmark-extension latex markdown
Last synced: about 2 months ago
JSON representation
A LaTeX renderer extension for the League\CommonMark package.
- Host: GitHub
- URL: https://github.com/samwilson/commonmark-latex
- Owner: samwilson
- License: gpl-3.0
- Created: 2022-07-12T05:27:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-11T04:03:54.000Z (4 months ago)
- Last Synced: 2024-10-11T19:21:32.354Z (3 months ago)
- Topics: commonmark-extension, latex, markdown
- Language: PHP
- Homepage: https://packagist.org/packages/samwilson/commonmark-latex
- Size: 51.8 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Samwilson/CommonMarkLatex
=========================An extension to [League/CommonMark](https://commonmark.thephpleague.com)
for rendering Markdown to LaTeX.![Packagist Version](https://img.shields.io/packagist/v/samwilson/commonmark-latex)
![Packagist License](https://img.shields.io/packagist/l/samwilson/commonmark-latex)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/samwilson/commonmark-latex/ci.yml?branch=main)## Installation
Install with [Composer](https://getcomposer.org/):
```
$ composer require samwilson/commonmark-latex
```## Usage
```php
addExtension(new \League\CommonMark\Extension\CommonMark\CommonMarkCoreExtension\CommonMarkCoreExtension());
// Add the LaTeX extension.
$environment->addExtension(new \Samwilson\CommonMarkLatex\LatexRendererExtension());
$converter = new \League\CommonMark\MarkdownConverter($environment);
$latex = $converter->convert('*Markdown* content goes here!')->getContent());
```## License
Copyright © 2022 Sam Wilson https://samwilson.id.au/
This program is free software: you can redistribute it and/or modify it under the terms of
the GNU General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.You should have received a copy of the GNU General Public License along with this program.
If not, see https://www.gnu.org/licenses/## Kudos
* The [League/CommonMark](https://commonmark.thephpleague.com/) package (of course!).
* [Simple_shapes_example.png](https://commons.wikimedia.org/wiki/File:Simple_shapes_example.png)
Test image by User:Scarce is Public Domain.
* [cebe/markdown-latex](https://packagist.org/packages/cebe/markdown-latex) for inspiration and some of the test files.