Skip to content

Instantly share code, notes, and snippets.

/exmaple.md Secret

Created June 27, 2016 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/187c80cdbf4ceab44f201076f638d5fe to your computer and use it in GitHub Desktop.
Save anonymous/187c80cdbf4ceab44f201076f638d5fe to your computer and use it in GitHub Desktop.
> var sanitizeHtml = require('sanitize-html');
undefined
> var example = `<p class="p"><b><span style="font-family: 'Times New Roman'; font-size: 12pt;">一、岗位及人数</span></b><span style="font-family: 'Times New Roman'; font-size: 12pt;"><o:p></o:p></span></p><p class="p"><span style="font-family: 'Times New Roman'; font-size: 12pt;">办公室工作人员,<font face="Times New Roman">1</font><font face="微软雅黑">名;教师,</font><font face="Times New Roman">4</font><font face="微软雅黑">名。</font></span>`;
undefined
> sanitizeHtml(example);
'<p><b>一、岗位及人数</b></p><p>办公室工作人员,1名;教师,4名。</p>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment