tovic/parsedown-extra-plugin
Composer 安装命令:
composer require tovic/parsedown-extra-plugin
包简介
Configurable Markdown to HTML converter with Parsedown Extra.
关键字:
README 文档
README
Configurable Markdown to HTML converter with Parsedown Extra.
Update 2023/09/03: I will be retiring this project due to the lack of activity on the Parsedown project to date. There is actually a draft for Parsedown version 2.0, but it seems that there has been no progress. I will consider refactoring when Parsedown version 2.0 is released, but I may no longer actively maintain this project as I am now shifting my focus to my own Markdown Extra parser. It consists of a single file and uses the same methods as Parsedown to separate blocks and inlines, so it should achieve similar (or even better) speed and efficiency.
Usage
Manual
Include ParsedownExtraPlugin.php just after the Parsedown.php and ParsedownExtra.php file:
require 'Parsedown.php'; require 'ParsedownExtra.php'; require 'ParsedownExtraPlugin.php'; # Create $Parsedown = new ParsedownExtraPlugin; # Configure $Parsedown->voidElementSuffix = '>'; // HTML5 # Use echo $Parsedown->text('# Header {.sth}');
Composer
From the file manager interface, create a composer.json file in your project folder, then add this content:
{
"minimum-stability": "dev"
}
From the command line interface, navigate to your project folder then run this command:
composer require taufik-nurrohman/parsedown-extra-plugin
From the file manager interface, create an index.php file in your project folder then require the auto-loader file:
require 'vendor/autoload.php'; # Create $Parsedown = new ParsedownExtraPlugin; # Configure $Parsedown->voidElementSuffix = '>'; // HTML5 # Use echo $Parsedown->text('# Header {.sth}');
Features
HTML or XHTML
$Parsedown->voidElementSuffix = '>'; // HTML5
Predefined Abbreviations
$Parsedown->abbreviationData = [ 'CSS' => 'Cascading Style Sheet', 'HTML' => 'Hyper Text Markup Language', 'JS' => 'JavaScript' ];
Predefined Reference Links and Images
$Parsedown->referenceData = [ 'mecha-cms' => [ 'url' => 'https://mecha-cms.com', 'title' => 'Mecha CMS' ], 'test-image' => [ 'url' => 'http://example.com/favicon.ico', 'title' => 'Test Image' ] );
Automatic rel="nofollow" Attribute on External Links
$Parsedown->linkAttributes = function ($Text, $Attributes, &$Element, $Internal) { if (!$Internal) { return [ 'rel' => 'nofollow', 'target' => '_blank'; ]; } return []; };
Automatic id Attribute on Headers
$Parsedown->headerAttributes = function ($Text, $Attributes, &$Element, $Level) { $Id = $Attributes['id'] ?? trim(preg_replace('/[^a-z\d\x{4e00}-\x{9fa5}]+/u', '-', strtolower($Text)), '-'); return ['id' => $Id]; };
Automatic Figure Elements
Every image markup that appears alone in a paragraph will be converted into a figure element automatically.
$Parsedown->figuresEnabled = true; $Parsedown->figureAttributes = ['class' => 'image']; $Parsedown->imageAttributesOnParent = ['class', 'id'];
To add a caption below the image, prepend at least one space but less than four spaces to turn the paragraph sequence that comes after the image into an image caption.
This is a paragraph.  Image caption. This is a paragraph.  Image caption in a paragraph tag. This is a paragraph.  This is a code block. This is a paragraph.
FYI, this format is also valid for average Markdown files. And so, it will degraded gracefully when parsed by other Markdown converters.
Custom Code Block Class Format
$Parsedown->blockCodeClassFormat = 'language-%s';
Custom Code Block Contents
$Parsedown->codeHtml = '<span class="my-code">%s</span>'; $Parsedown->blockCodeHtml = '<span class="my-code-block">%s</span>';
// <https://github.com/scrivo/highlight.php> function doApplyHighlighter(string $Text, array $ClassList, &$Element) { $Highlight = new \Highlight\Highlighter; $Highlight->setAutodetectLanguages($ClassList); $Highlighted = $Highlight->highlightAuto($Text); $Element['attributes']['class'] = 'hljs ' . $Highlighted->language; return $Highlighted->value; } $Parsedown->codeHtml = function ($Text, $Attributes, &$Element) { return doApplyHighlighter($Text, [], $Element); }; $Parsedown->blockCodeHtml = function ($Text, $Attributes, &$Element) { $ClassList = array_filter(explode(' ', $Attributes['class'] ?? "")); return doApplyHighlighter($Text, $ClassList, $Element); };
Put <code> Attributes on <pre> Element
$Parsedown->codeAttributesOnParent = true;
Custom Quote Block Class
$Parsedown->blockQuoteAttributes = ['class' => 'quote'];
$Parsedown->blockQuoteAttributes = function ($Text, $Attributes, &$Element) { if (strpos($Text, '**Danger:** ') === 0) { return ['class' => 'alert alert-danger']; } if (strpos($Text, '**Info:** ') === 0) { return ['class' => 'alert alert-info']; } return []; };
Custom Table Attributes
$Parsedown->tableAttributes = ['border' => 1];
Custom Table Alignment Class
$Parsedown->tableColumnAttributes = function ($Text, $Attributes, &$Element, $Align) { return [ 'class' => $Align ? 'text-' . $Align : null, 'style' => null // Remove inline styles ]; };
Custom Footnote ID Format
$Parsedown->footnoteLinkAttributes = function ($Number, $Attributes, &$Element, $Name) { return ['href' => '#to:' . $Name]; }; $Parsedown->footnoteReferenceAttributes = function ($Number, $Attributes, &$Element, $Name, $Index) { return ['id' => 'from:' . $Name . '.' . $Index]; }; $Parsedown->footnoteBackLinkAttributes = function ($Number, $Attributes, &$Element, $Name, $Index) { return ['href' => '#from:' . $Name . '.' . $Index]; }; $Parsedown->footnoteBackReferenceAttributes = function ($Number, $Attributes, &$Element, $Name, $Total) { return ['id' => 'to:' . $Name]; };
Custom Footnote Class
$Parsedown->footnoteAttributes = ['class' => 'notes'];
Custom Footnote Link Text
$Parsedown->footnoteLinkHtml = '[%s]';
Custom Footnote Back Link Text
$Parsedown->footnoteBackLinkHtml = '<i class="icon icon-back"></i>';
Advance Attribute Parser
{#foo}→<tag id="foo">{#foo#bar}→<tag id="bar">{.foo}→<tag class="foo">{.foo.bar}→<tag class="foo bar">{#foo.bar.baz}→<tag id="foo" class="bar baz">{#foo .bar .baz}→<tag id="foo" class="bar baz">(white-space before#and.becomes optional in my extension){foo="bar"}→<tag foo="bar">{foo="bar baz"}→<tag foo="bar baz">{foo='bar'}→<tag foo="bar">{foo='bar baz'}→<tag foo="bar baz">{foo=bar}→<tag foo="bar">{foo=}→<tag foo="">{foo}→<tag foo="foo">{foo=bar baz}→<tag foo="bar" baz="baz">{#a#b.c.d e="f" g="h i" j='k' l='m n' o=p q= r s t="u#v.w.x y=z"}→<tag id="b" class="c d" e="f" g="h i" j="k" l="m n" o="p" q="" r="r" s="s" t="u#v.w.x y=z">
Code Block Class Without language- Prefix
Dot prefix in class name are now becomes optional, custom attributes syntax also acceptable:
php→<pre><code class="language-php">php html→<pre><code class="language-php language-html">.php→<pre><code class="php">.php.html→<pre><code class="php html">.php html→<pre><code class="php language-html">{.php #foo}→<pre><code class="php" id="foo">
Property Aliases as Methods
Property aliases are available as methods just to follow the way Parsedown set its configuration data. It uses PHP
__call() method to generate the class methods automatically:
// This is … $Parsedown->setBlockCodeHtml(function () { … }); // … equal to this $Parsedown->blockCodeHtml = function () { … };
Support
I’m looking for digital agencies and web designers who are interested in trying out my content management system, Mecha. Mecha is a minimalist content management system for building simple websites ranging from web company profile to web log for personal branding. It is a file-based content management system and does not take up too much web hosting space so:
- From the client’s point of view, this can reduce their monthly hosting expenses.
- From the web designer’s point of view, this will increase your company’s profits.
I prefer designers who don’t really understand programming languages but understand the basics of creating web themes. So that my JavaScript and PHP skills can help you to solve the problems related to the back-end side features of your web project. Then, I can get rewarded when you use the panel feature on your clients’ projects.
tovic/parsedown-extra-plugin 适用场景与选型建议
tovic/parsedown-extra-plugin 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 34.84k 次下载、GitHub Stars 达 59, 最近一次更新时间为 2018 年 06 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「parser」 「markdown」 「extension」 「extra」 「parsedown」 「markdown extra」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tovic/parsedown-extra-plugin 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tovic/parsedown-extra-plugin 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tovic/parsedown-extra-plugin 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Texy converts plain text in easy to read Texy syntax into structurally valid (X)HTML. It supports adding of images, links, nested lists, tables and has full support for CSS. Texy supports hyphenation of long words (which reflects language rules), clickable emails and URL (emails are obfuscated again
Easy to use SDK with grabber for multiple platforms at once like YouTube, Dailymotion, Facebook and more.
A custom URL rule class for Yii 2 which allows to create translated URL rules
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
TYPO3 CMS extension to create gallery content element with preset crop ratios and pagination
UI Kit 3 Extension for Yii2
统计信息
- 总下载量: 34.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 59
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-06-09
