archives
bundled-libs
deployment
docs
htmlarea
include
lang
plugins
serendipity_event_bbcode
serendipity_event_creativecommons
serendipity_event_emoticate
serendipity_event_entryproperties
serendipity_event_gravatar
serendipity_event_mailer
serendipity_event_nl2br
serendipity_event_responsiveimages
serendipity_event_s9ymarkup
serendipity_event_spamblock
serendipity_event_spartacus
serendipity_event_templatechooser
serendipity_event_textile
serendipity_event_xhtmlcleanup
UTF-8
lang_bg.inc.php
lang_cn.inc.php
lang_cs.inc.php
lang_cz.inc.php
lang_de.inc.php
lang_en.inc.php
lang_es.inc.php
lang_fr.inc.php
lang_ja.inc.php
lang_ko.inc.php
lang_pl.inc.php
lang_pt_PT.inc.php
lang_tn.inc.php
lang_zh.inc.php
serendipity_event_xhtmlcleanup.php
serendipity_plugin_archives
serendipity_plugin_authors
serendipity_plugin_calendar
serendipity_plugin_categories
serendipity_plugin_comments
serendipity_plugin_creativecommons
serendipity_plugin_entrylinks
serendipity_plugin_eventwrapper
serendipity_plugin_history
serendipity_plugin_html_nugget
serendipity_plugin_plug
serendipity_plugin_quicksearch
serendipity_plugin_recententries
serendipity_plugin_remoterss
serendipity_plugin_superuser
serendipity_plugin_syndication
serendipity_plugin_templatedropdown
sql
templates
templates_c
tests
uploads
.gitignore
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.markdown
checksums.inc.php
comment.php
composer.json
composer.phar
exit.php
index.php
rss.php
serendipity.css.php
serendipity_admin.php
serendipity_admin_image_selector.php
serendipity_config.inc.php
serendipity_xmlrpc.php
wfwcomment.php
9 lines
960 B
PHP
9 lines
960 B
PHP
<?php
|
||
|
||
@define('PLUGIN_EVENT_XHTMLCLEANUP_NAME', '修复常见的XHTML错误');
|
||
@define('PLUGIN_EVENT_XHTMLCLEANUP_DESC', '该插件会修复文章中一些常见的XHTML错误,这可以使你的文章与XHTML协议兼容。');
|
||
@define('PLUGIN_EVENT_XHTMLCLEANUP_XHTML', '对XML数据进行编码操作?');
|
||
@define('PLUGIN_EVENT_XHTMLCLEANUP_XHTML_DESC', '该插件使用一种XML解析手段来确保你的代码能通过XHTML验证。在进行XML解析时,会将现有的符合XHTML协议的文章转换成原始(unescaped)文章,随后在完成XML解析后对所有文章进行编码操作。如果在使用中发现有重复进行编码操作的现象,需将此设置关闭。');
|
||
@define('PLUGIN_EVENT_XHTMLCLEANUP_UTF8', '清理UTF-8格式的标签');
|
||
@define('PLUGIN_EVENT_XHTMLCLEANUP_UTF8_DESC', '如果启用该设置的话,那些从UTF-8字符串中演绎出来的HTML标签将能被正确地转换,而不会被重复进行编码。');
|