richText.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. graceUI rich-text 加强工具
  3. link : graceui.hcoder.net
  4. author : 5213606@qq.com 深海
  5. 版权声明 :
  6. GraceUI 的版权约束是不能转售或者将 GraceUI 直接发布到公开渠道!
  7. 侵权必究,请遵守版权约定!
  8. */
  9. // 正则变量
  10. var graceRichTextReg;
  11. // 批量替换的样式 [ 根据项目需求自行设置 ]
  12. var GRT = [
  13. // div 样式
  14. ['div', "line-height:2em;"],
  15. // h1 样式
  16. ['h1', "font-size:3em; line-height:1.5em;"],
  17. // h2 样式
  18. ['h2', "font-size:2em; line-height:1.8em;"],
  19. // h3 样式
  20. ['h3', "font-size:1.6em; line-height:2em;"],
  21. // h4 样式
  22. ['h4', "font-size:1.2em; line-height:2em;"],
  23. // h5 样式
  24. ['h5', "font-size:1em; line-height:2em;"],
  25. // h6 样式
  26. ['h6', "font-size:0.9em; line-height:2em;"],
  27. // p 样式
  28. ['p', "font-size:1em; line-height:2em;"],
  29. // b 样式
  30. ['b', "font-size:1em; line-height:2em;"],
  31. // strong 样式
  32. ['strong', "font-size:1em; line-height:2em;"],
  33. // code 样式
  34. ['code', "font-size:1em; line-height:1.2em; background:#F6F7F8; padding:8px 2%; width:96%;"],
  35. // img 样式
  36. ['img', "width:100%; margin:8px 0;"],
  37. // blockquote
  38. ['blockquote', "font-size:1em; border-left:3px solid #D1D1D1; line-height:2em; border-radius:5px; background:#F6F7F8; padding:8px 2%;"],
  39. // li 样式
  40. ['ul', "padding:5px 0; list-style:none; padding:0; margin:0;"],
  41. ['li', "line-height:1.5em; padding:5px 0; list-style:none; padding:0; margin:0; margin-top:10px;"],
  42. // table
  43. ['table', "width:100%; border-left:1px solid #F2F3F4; border-top:1px solid #F2F3F4;"],
  44. ['th', "border-right:1px solid #F2F3F4; border-bottom:1px solid #F2F3F4;"],
  45. ['td', "border-right:1px solid #F2F3F4; border-bottom:1px solid #F2F3F4; padding-left:5px;"]
  46. ];
  47. module.exports = {
  48. format : function(html){
  49. html = html.replace(/<pre.*pre>?/gis, function(word){
  50. word = word.replace(/[\n]/gi,'<br />');
  51. word = word.replace(/ /gi,'<span style="padding-left:2em;"></span>');
  52. return word.replace(/[\t]/gi, '<span style="padding-left:2em;"></span>');
  53. });
  54. html = html.replace(/<pre/gi, '<p style="font-size:1em; margin:12px 0; line-height:1.2em; background:#F6F7F8; border-radius:5px; padding:8px 4%; width:92%;"');
  55. html = html.replace(/<\/pre/gi,"</p");
  56. for(let i = 0; i < GRT.length; i++){
  57. graceRichTextReg = new RegExp('<'+GRT[i][0]+'>|<'+GRT[i][0]+' (.*?)>', 'gi');
  58. html = html.replace(graceRichTextReg , function(word){
  59. // 分析 dom 上是否带有 style=""
  60. if(word.indexOf('style=') != -1){
  61. var regIn = new RegExp('<' + GRT[i][0] + '(.*?)style="(.*?)"(.*?)(/?)>', 'gi');
  62. return word.replace(regIn, '<'+ GRT[i][0] +'$1style="$2 ' + GRT[i][1] +'"$3$4>');
  63. }else{
  64. var regIn = new RegExp('<' + GRT[i][0] + '(.*?)(/?)>', 'gi');
  65. return word.replace(regIn, '<'+ GRT[i][0] +'$1 style="' + GRT[i][1] +'$2">');
  66. }
  67. });
  68. }
  69. return html;
  70. }
  71. }