kukulich/fshl
最新稳定版本:2.1.0
Composer 安装命令:
composer require kukulich/fshl
包简介
FSHL is a free, open source, universal, fast syntax highlighter written in PHP.
关键字:
README 文档
README
FSHL is a free, open source, universal, fast syntax highlighter written in PHP. A very fast parser performs syntax highlighting for few languages and produces a HTML output.
FSHL library is a simple, easy to use syntax highlighter. Its API provides only one method that is really need to highlight sources and three auxiliary methods to sets lexer and output mode.
FSHL core is very flexible and it is very easy to add new languages. Feel free to do so and do not forget to share them with the rest of the world.
Installation
FSHL should be installed using the PEAR Installer. This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0.
The PEAR channel that is used to distribute FSHL needs to be registered with the local PEAR environment.
pear channel-discover pear.kukulich.cz
This has to be done only once. Now the PEAR Installer can be used to install packages from the kukulich channel:
pear install kukulich/FSHL
After the installation you can find the FSHL source files inside your local PEAR directory.
Example
<?php $highlighter = new \FSHL\Highlighter(new \FSHL\Output\Html()); $highlighter->setLexer(new \FSHL\Lexer\Php()); echo '<pre>'; echo $highlighter->highlight('<?php echo "Hello world!"; ?>'); echo '</pre>'; ?>
Or
<?php $highlighter = new \FSHL\Highlighter(new \FSHL\Output\Html(), \FSHL\Highlighter::OPTION_TAB_INDENT | \FSHL\Highlighter::OPTION_LINE_COUNTER); echo '<pre>'; echo $highlighter->highlight('<?php echo "Hello world!"; ?>', new \FSHL\Lexer\Php()); echo '</pre>'; ?>
Stylesheet
A nice default stylesheet is located in the style.css file.
Requirements
FSHL requires PHP 5.3 or later.
Authors
- Jaroslav Hanslík
- Juraj 'hvge' Durech
统计信息
- 总下载量: 737.91k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 65
- 点击次数: 1
- 依赖项目数: 9
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2012-09-24