django 发送html模版渲染邮件
1.settings.py文件中添加配置:
# email config
EMAIL_HOST='smtp.163.com'
EMAIL_HOST_USER='bbaobelief@163.com'
EMAIL_HOST_PASSWORD='123456'
EMAIL_USE_TLS = True
2.发送简单邮件:
from …
15/10/2015
Google Code Prettify 代码高亮显示行号
以前我使用 highlight.js,现在换了kindeditor编辑器。为了更好的兼容性,代码高亮插件改为Prettify,出现无法显示行号问题,记录解决方法。
1.修改code.js文件49行为
html = '<pre class="prettyprint linenums' + cls + '">\n' + K.escape …
25/09/2014