samwilson/commonmark-latex

A LaTeX renderer for CommonMark.

Installs: 1 042

Dependents: 1

Suggesters: 0

Security: 0

Stars: 5

Watchers: 3

Forks: 0

Open Issues: 0

Type:commonmark-extension

0.4.2 2024-01-11 08:46 UTC

This package is auto-updated.

Last update: 2024-04-11 09:21:30 UTC


README

An extension to League/CommonMark for rendering Markdown to LaTeX.

Packagist Version Packagist License GitHub Workflow Status

Installation

Install with Composer:

$ composer require samwilson/commonmark-latex

Usage

<?php
$environment = new \League\CommonMark\Environment\Environment();
// Add the core extension.
$environment->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