📄 modifier.html2js.php
字号:
<?php
/**
* Template_Lite bbcode modifier plugin
*
* Type: modifier
* Name: bbcode2html
* Purpose: converts special bbcode syntax into standard html
* Input:<br>
* - string: data to convert
*/
function tpl_modifier_html2js($data)
{
$JS = str_replace("\r\n", "", $data);
$JS = str_replace("\n", "", $JS);
$JS = str_replace("\\", "\\\\", $JS);
$JS = str_replace("\"", "\\\"", $JS);
return $JS;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -