Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. 在 EvernoteSync.php 里修改 formatArticle 函数
  2.  
  3. //添加<en-todo>标签
  4. // 清除不需要的标签(<a><span><b><strong><em><u><strike><i>可出现在<p>内)
  5. $ret = strip_tags($ret, '<a><span><b><strong><em><u><strike><i><div><p><pre><code><video><source><embed><object><param><audio><bgsound><h1><h2><h3><h4><h5><table><tr><td><th><br><img><blockquote><ol><ul><li><en-todo>');
  6.  
  7. ......
  8.  
  9. //恢复checkbox
  10. $ret = str_replace('<en-todo checked="false"/>', '<input type="checkbox"/>', $ret);
  11. $ret = str_replace('<en-todo checked="true"/>', '<input type="checkbox" checked="true"/>', $ret);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement