pessek/hypeshortcode

短代码支持

安装: 3

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:elgg-plugin

v1.2.0 2021-05-29 13:28 UTC

This package is auto-updated.

Last update: 2024-09-29 06:03:03 UTC


README

添加自定义 BB-style 短代码支持

用法

注册短代码

elgg()->shortcodes->register('mycode');

// then add a view in shortcodes/mycode
// view vars will contain attributes of the shortcode

生成短代码标签

elgg()->shortcodes->generate('mycode', [
	'foo' => 'bar',
]);

展开短代码

elgg()->shortcodes->expand($text);

移除短代码

elgg()->shortcodes->strip($text);