<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>插件 &#8211; 编码无悔 /  Intent &amp; Focused</title>
	<atom:link href="https://www.codelast.com/tag/%e6%8f%92%e4%bb%b6/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.codelast.com</link>
	<description>最优化之路</description>
	<lastBuildDate>Mon, 27 Apr 2020 17:46:15 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>[原创] IntelliJ推出的语法检查插件Grazie，没有现实意义</title>
		<link>https://www.codelast.com/%e5%8e%9f%e5%88%9b-intellij%e6%8e%a8%e5%87%ba%e7%9a%84%e8%af%ad%e6%b3%95%e6%a3%80%e6%9f%a5%e6%8f%92%e4%bb%b6grazie%ef%bc%8c%e6%b2%a1%e6%9c%89%e7%8e%b0%e5%ae%9e%e6%84%8f%e4%b9%89/</link>
					<comments>https://www.codelast.com/%e5%8e%9f%e5%88%9b-intellij%e6%8e%a8%e5%87%ba%e7%9a%84%e8%af%ad%e6%b3%95%e6%a3%80%e6%9f%a5%e6%8f%92%e4%bb%b6grazie%ef%bc%8c%e6%b2%a1%e6%9c%89%e7%8e%b0%e5%ae%9e%e6%84%8f%e4%b9%89/#respond</comments>
		
		<dc:creator><![CDATA[learnhard]]></dc:creator>
		<pubDate>Sat, 09 Nov 2019 16:46:07 +0000</pubDate>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[综合]]></category>
		<category><![CDATA[Grazie]]></category>
		<category><![CDATA[IntelliJ]]></category>
		<category><![CDATA[插件]]></category>
		<category><![CDATA[语法检查]]></category>
		<guid isPermaLink="false">https://www.codelast.com/?p=10792</guid>

					<description><![CDATA[<p>
今天看到一篇推送的技术文章，说IntelliJ推出了一个语法检查插件<a href="https://blog.jetbrains.com/idea/2019/11/meet-grazie-the-ultimate-spelling-grammar-and-style-checker-for-intellij-idea/" rel="noopener noreferrer" target="_blank"><span style="background-color:#ffa07a;">Grazie</span></a>，但它不是用于检查面向编译器的语法，而是用于检查面向人类的语法，比如引号里的字符串、注释语句里的语法，等等。我认为在当前的环境下，它没有意义&#8212;&#8212;除非在一个有着严格要求(或者非常自律)的团队里，否则这种功能只能用来&#8220;折腾自己&#8221;，而不可能改善大家整体的代码状况。<br />
<span id="more-10792"></span><br />
Grazie的功能是什么？例如下图，你在字符串里写了一句话&#8220;<span style="color:#0000ff;">This are an simple ...</span>&#8221;&#160;显然这里的 <span style="color:#ff0000;">are</span>&#160;是有语法错误的，应该是 <span style="color:#ff0000;">is</span>，此时Grazie就会提示有错：<br />
<img decoding="async" alt="intellij grazie plugin" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/grazie_2.png" style="width: 700px; height: 368px;" /><br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
从Grazie的简介看，使用它的时候会针对设置的language，下载对应的模型到本地使用。因此，Grazie应该也是基于机器学习技术的插件。<br />
这个功能虽然很好，但我认为，在当前的编程环境下，这个插件没有现实意义。</p>
<p>举个例子来说，像语法超级严格的Golang，不允许左花括号另起一行，如果你这么写就会被判定为语法错误。这样的限制，让很多开发者没办法随心所欲地按自己的喜好来写代码，同时也在一定程度上保证了大家的代码规范统一。但是，对某些没有被定义成&#8220;语法错误&#8221;，仅仅是影响&#8220;观感&#8221;的问题，Golang就不管了，比如 <span style="color:#ff0000;">func main() {</span>，你把 <font color="#ff0000">)</font>&#160;和&#160;<span style="color:#ff0000;">{&#160;</span>之间的空格去掉，也是能编译过的，只不过这种不规范，会让人很不爽而已。<br />
所以Go推出了 gofmt&#160;这个代码格式化工具，来让代码统一到完全一致的风格，但是如果团队里没有人使用它的话，这玩意有个鬼用？除非把它整合在持续集成的系统里，<span style="color:#0000ff;">当开发者提交代码的时候，不100%符合规范的代码，直接报错，不允许提交到代码库</span>，否则 gofmt&#160;就只能是个虚的角色。靠自觉？太不现实了。<br />
我之前短暂地开发过一段时间的Golang程序，讲真心话，就算在Golang这么严格的语法要求下，team里的其他人还是各种不遵守规范(那些可以通过编译的&#8220;不规范&#8221;)，并且还是把代码提交到了repo里，真让人无语。<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
再拿规范超级不严格的Python来说，那问题就更多了。什么结尾没有newline，各种换行不对齐之类的的问题，根本就不会被判定为语法问题，现在随便去GitHub上看很多知名library的代码都会发现这样的情况，这些问题在开发者中都已经普遍得不得了了，根本没有多少Python开发者关心。所以，连这些问题都不关心的开发者们，还能要求他们去关注自然语言里的语法错误那些&#8220;微不足道&#8221;的破事吗？我觉得根本不现实。<br />
在PyCharm里格式化Python代码使之符合PEP8编码规范，只是按一个快捷键就能做到的事，就这么简单，很多人都不愿意去做，所以，如果上了Grazie的&#8220;紧箍咒&#8221;，岂不要了大家的命了？所以，还是算了吧...<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
最后，有追求的人请安装Grazie，就算学学英文语法也是不错的：<br />
<img decoding="async" alt="intellij Grazie plugin" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/grazie_1.png" style="width: 700px; height: 403px;" /></p>
<p><span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a>&#8230; <a href="https://www.codelast.com/%e5%8e%9f%e5%88%9b-intellij%e6%8e%a8%e5%87%ba%e7%9a%84%e8%af%ad%e6%b3%95%e6%a3%80%e6%9f%a5%e6%8f%92%e4%bb%b6grazie%ef%bc%8c%e6%b2%a1%e6%9c%89%e7%8e%b0%e5%ae%9e%e6%84%8f%e4%b9%89/" class="read-more">Read More </a></p>]]></description>
										<content:encoded><![CDATA[<p>
今天看到一篇推送的技术文章，说IntelliJ推出了一个语法检查插件<a href="https://blog.jetbrains.com/idea/2019/11/meet-grazie-the-ultimate-spelling-grammar-and-style-checker-for-intellij-idea/" rel="noopener noreferrer" target="_blank"><span style="background-color:#ffa07a;">Grazie</span></a>，但它不是用于检查面向编译器的语法，而是用于检查面向人类的语法，比如引号里的字符串、注释语句里的语法，等等。我认为在当前的环境下，它没有意义&mdash;&mdash;除非在一个有着严格要求(或者非常自律)的团队里，否则这种功能只能用来&ldquo;折腾自己&rdquo;，而不可能改善大家整体的代码状况。<br />
<span id="more-10792"></span><br />
Grazie的功能是什么？例如下图，你在字符串里写了一句话&ldquo;<span style="color:#0000ff;">This are an simple ...</span>&rdquo;&nbsp;显然这里的 <span style="color:#ff0000;">are</span>&nbsp;是有语法错误的，应该是 <span style="color:#ff0000;">is</span>，此时Grazie就会提示有错：<br />
<img decoding="async" alt="intellij grazie plugin" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/grazie_2.png" style="width: 700px; height: 368px;" /><br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
从Grazie的简介看，使用它的时候会针对设置的language，下载对应的模型到本地使用。因此，Grazie应该也是基于机器学习技术的插件。<br />
这个功能虽然很好，但我认为，在当前的编程环境下，这个插件没有现实意义。</p>
<p>举个例子来说，像语法超级严格的Golang，不允许左花括号另起一行，如果你这么写就会被判定为语法错误。这样的限制，让很多开发者没办法随心所欲地按自己的喜好来写代码，同时也在一定程度上保证了大家的代码规范统一。但是，对某些没有被定义成&ldquo;语法错误&rdquo;，仅仅是影响&ldquo;观感&rdquo;的问题，Golang就不管了，比如 <span style="color:#ff0000;">func main() {</span>，你把 <font color="#ff0000">)</font>&nbsp;和&nbsp;<span style="color:#ff0000;">{&nbsp;</span>之间的空格去掉，也是能编译过的，只不过这种不规范，会让人很不爽而已。<br />
所以Go推出了 gofmt&nbsp;这个代码格式化工具，来让代码统一到完全一致的风格，但是如果团队里没有人使用它的话，这玩意有个鬼用？除非把它整合在持续集成的系统里，<span style="color:#0000ff;">当开发者提交代码的时候，不100%符合规范的代码，直接报错，不允许提交到代码库</span>，否则 gofmt&nbsp;就只能是个虚的角色。靠自觉？太不现实了。<br />
我之前短暂地开发过一段时间的Golang程序，讲真心话，就算在Golang这么严格的语法要求下，team里的其他人还是各种不遵守规范(那些可以通过编译的&ldquo;不规范&rdquo;)，并且还是把代码提交到了repo里，真让人无语。<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
再拿规范超级不严格的Python来说，那问题就更多了。什么结尾没有newline，各种换行不对齐之类的的问题，根本就不会被判定为语法问题，现在随便去GitHub上看很多知名library的代码都会发现这样的情况，这些问题在开发者中都已经普遍得不得了了，根本没有多少Python开发者关心。所以，连这些问题都不关心的开发者们，还能要求他们去关注自然语言里的语法错误那些&ldquo;微不足道&rdquo;的破事吗？我觉得根本不现实。<br />
在PyCharm里格式化Python代码使之符合PEP8编码规范，只是按一个快捷键就能做到的事，就这么简单，很多人都不愿意去做，所以，如果上了Grazie的&ldquo;紧箍咒&rdquo;，岂不要了大家的命了？所以，还是算了吧...<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
最后，有追求的人请安装Grazie，就算学学英文语法也是不错的：<br />
<img decoding="async" alt="intellij Grazie plugin" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/grazie_1.png" style="width: 700px; height: 403px;" /></p>
<p><span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;版权声明&nbsp;<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;<br />
转载需注明出处：<u><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><em><span style="color: rgb(0, 0, 255);"><strong style="font-size: 16px;"><span style="font-family: arial, helvetica, sans-serif;">codelast.com</span></strong></span></em></a></u>&nbsp;<br />
感谢关注我的微信公众号（微信扫一扫）：</p>
<p style="border: 0px; font-size: 13px; margin: 0px 0px 9px; outline: 0px; padding: 0px; color: rgb(77, 77, 77);">
	<img decoding="async" alt="wechat qrcode of codelast" src="https://www.codelast.com/codelast_wechat_qr_code.jpg" style="width: 200px; height: 200px;" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codelast.com/%e5%8e%9f%e5%88%9b-intellij%e6%8e%a8%e5%87%ba%e7%9a%84%e8%af%ad%e6%b3%95%e6%a3%80%e6%9f%a5%e6%8f%92%e4%bb%b6grazie%ef%bc%8c%e6%b2%a1%e6%9c%89%e7%8e%b0%e5%ae%9e%e6%84%8f%e4%b9%89/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>解决LaTeX for WordPress插件在PHP 7.0下失效的问题</title>
		<link>https://www.codelast.com/%e8%a7%a3%e5%86%b3latex-for-wordpress%e6%8f%92%e4%bb%b6%e5%9c%a8php-7-0%e4%b8%8b%e5%a4%b1%e6%95%88%e7%9a%84%e9%97%ae%e9%a2%98/</link>
					<comments>https://www.codelast.com/%e8%a7%a3%e5%86%b3latex-for-wordpress%e6%8f%92%e4%bb%b6%e5%9c%a8php-7-0%e4%b8%8b%e5%a4%b1%e6%95%88%e7%9a%84%e9%97%ae%e9%a2%98/#respond</comments>
		
		<dc:creator><![CDATA[learnhard]]></dc:creator>
		<pubDate>Tue, 11 Jun 2019 17:35:39 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[综合]]></category>
		<category><![CDATA[LaTeX for WordPress]]></category>
		<category><![CDATA[PHP 7]]></category>
		<category><![CDATA[不显示公式]]></category>
		<category><![CDATA[失效]]></category>
		<category><![CDATA[插件]]></category>
		<guid isPermaLink="false">https://www.codelast.com/?p=10381</guid>

					<description><![CDATA[<p>
最近WordPress管理后台提示我升级WordPress版本到5.2.1，但由于5.2.1最低要求的PHP版本是5.6，我使用的PHP比这个版本还低，因此只能升级PHP版本，同时又考虑到现在PHP 7比较主流，因此我从PHP 5.4直接升到了PHP 7。<br />
<span id="more-10381"></span><br />
之后有一位网友在评论里说网页里的LaTeX公式没了，我一看，果然所有LaTeX公式都不能显示了。由于我使用的是<a href="https://www.codelast.com/?p=6199" target="_blank" rel="noopener noreferrer"><span style="background-color:#ffa07a;">LaTeX for WordPress</span></a>这个插件来渲染的数学公式，因此怀疑这个插件被PHP 7搞挂了。</p>
<p>网上搜索之后找到了<a href="http://www.alpha-epsilon.de/misc/2017/08/05/the-latex-for-wordpress-plugin-and-php-7-0-7-1/" target="_blank" rel="noopener noreferrer"><span style="background-color:#ffa07a;">答案</span></a>，果然是这个插件不支持PHP 7环境，插件代码调用的&#160;<span style="color:#0000ff;">preg_replace</span>&#160;函数使用了一个废弃的 <span style="color:#0000ff;">/e</span>&#160;修饰符，而这个修饰符在PHP 7中被完全废弃了，因此整个插件挂掉。<br />
修改方法为，在WordPress管理后台的插件代码编辑页面里，把此插件代码里的如下两行：</p>
<div style="color: rgb(187, 187, 187); background-color: rgb(40, 44, 52); font-family: Verdana; font-size: 16px; line-height: 24px; white-space: pre;">
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&#38;#(\d</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/me&#39;</span>,<span style="color: #98c379;">&#34;chr(</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&#34;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#decimal notation</span><br />
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&#38;#x([a-f0-9]</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/mei&#39;</span>,<span style="color: #98c379;">&#34;chr(0x</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&#34;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#hex notation</span></div>
<p>分别改为如下两行：</p>
<div style="color: rgb(187, 187, 187); background-color: rgb(40, 44, 52); font-family: Verdana; font-size: 16px; line-height: 24px; white-space: pre;">
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&#38;#(\d</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/m&#39;</span>,<span style="color: #98c379;">&#34;chr(</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&#34;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#decimal notation</span><br />
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&#38;#x([a-f0-9]</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/mi&#39;</span>,<span style="color: #98c379;">&#34;chr(0x</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&#34;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#hex notation</span></div>
<p><span style="color: rgb(255, 255, 255);">文章来源：</span><a href="http://www.codelast.com/" target="_blank" rel="noopener noreferrer"><span style="color: rgb(255, 255, 255);">http://www.codelast.com/</span></a>&#8230; <a href="https://www.codelast.com/%e8%a7%a3%e5%86%b3latex-for-wordpress%e6%8f%92%e4%bb%b6%e5%9c%a8php-7-0%e4%b8%8b%e5%a4%b1%e6%95%88%e7%9a%84%e9%97%ae%e9%a2%98/" class="read-more">Read More </a></p>]]></description>
										<content:encoded><![CDATA[<p>
最近WordPress管理后台提示我升级WordPress版本到5.2.1，但由于5.2.1最低要求的PHP版本是5.6，我使用的PHP比这个版本还低，因此只能升级PHP版本，同时又考虑到现在PHP 7比较主流，因此我从PHP 5.4直接升到了PHP 7。<br />
<span id="more-10381"></span><br />
之后有一位网友在评论里说网页里的LaTeX公式没了，我一看，果然所有LaTeX公式都不能显示了。由于我使用的是<a href="https://www.codelast.com/?p=6199" target="_blank" rel="noopener noreferrer"><span style="background-color:#ffa07a;">LaTeX for WordPress</span></a>这个插件来渲染的数学公式，因此怀疑这个插件被PHP 7搞挂了。</p>
<p>网上搜索之后找到了<a href="http://www.alpha-epsilon.de/misc/2017/08/05/the-latex-for-wordpress-plugin-and-php-7-0-7-1/" target="_blank" rel="noopener noreferrer"><span style="background-color:#ffa07a;">答案</span></a>，果然是这个插件不支持PHP 7环境，插件代码调用的&nbsp;<span style="color:#0000ff;">preg_replace</span>&nbsp;函数使用了一个废弃的 <span style="color:#0000ff;">/e</span>&nbsp;修饰符，而这个修饰符在PHP 7中被完全废弃了，因此整个插件挂掉。<br />
修改方法为，在WordPress管理后台的插件代码编辑页面里，把此插件代码里的如下两行：</p>
<div style="color: rgb(187, 187, 187); background-color: rgb(40, 44, 52); font-family: Verdana; font-size: 16px; line-height: 24px; white-space: pre;">
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&amp;#(\d</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/me&#39;</span>,<span style="color: #98c379;">&quot;chr(</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&quot;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#decimal notation</span><br />
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&amp;#x([a-f0-9]</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/mei&#39;</span>,<span style="color: #98c379;">&quot;chr(0x</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&quot;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#hex notation</span></div>
<p>分别改为如下两行：</p>
<div style="color: rgb(187, 187, 187); background-color: rgb(40, 44, 52); font-family: Verdana; font-size: 16px; line-height: 24px; white-space: pre;">
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&amp;#(\d</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/m&#39;</span>,<span style="color: #98c379;">&quot;chr(</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&quot;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#decimal notation</span><br />
	<span style="color: #e06c75;">$text</span><span style="color: #abb2bf;">=</span> <span style="color: #56b6c2;">preg_replace</span>(<span style="color: #56b6c2;">&#39;/&amp;#x([a-f0-9]</span><span style="color: #abb2bf;">+</span><span style="color: #56b6c2;">);/mi&#39;</span>,<span style="color: #98c379;">&quot;chr(0x</span><span style="color: #56b6c2;">\\</span><span style="color: #98c379;">1)&quot;</span>,<span style="color: #e06c75;">$text</span>); <span style="color: #5c6370;font-style: italic;">#hex notation</span></div>
<p><span style="color: rgb(255, 255, 255);">文章来源：</span><a href="http://www.codelast.com/" target="_blank" rel="noopener noreferrer"><span style="color: rgb(255, 255, 255);">http://www.codelast.com/</span></a><br />
之后保存修改，清除WordPress缓存(如果你用了某些缓存插件的话)，再刷新页面，搞定！</p>
<p><span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;版权声明&nbsp;<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;<br />
转载需注明出处：<u><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><em><span style="color: rgb(0, 0, 255);"><strong style="font-size: 16px;"><span style="font-family: arial, helvetica, sans-serif;">codelast.com</span></strong></span></em></a></u>&nbsp;<br />
感谢关注我的微信公众号（微信扫一扫）：</p>
<p style="border: 0px; font-size: 13px; margin: 0px 0px 9px; outline: 0px; padding: 0px; color: rgb(77, 77, 77);">
	<img decoding="async" alt="wechat qrcode of codelast" src="https://www.codelast.com/codelast_wechat_qr_code.jpg" style="width: 200px; height: 200px;" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codelast.com/%e8%a7%a3%e5%86%b3latex-for-wordpress%e6%8f%92%e4%bb%b6%e5%9c%a8php-7-0%e4%b8%8b%e5%a4%b1%e6%95%88%e7%9a%84%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
