Prism 官网
https://prismjs.com/
Django CKeditor Prism 插件下载
官方下载:http://download.ckeditor.com/prism/releases...static/ckeditor/ckeditor/plugins 路径下
在 settings 的 CKEDITOR_CONFIGS 里的 extraPlugins 对应的 value 里加入插件 'prism...' 和 另外两个插件:"lineutils"、"widget"(这两个插件无须下载,在 django-ckeditor 中已经有了)
# ckeditor configs
CKEDITOR_CONFIGS...auto',
'height': '480px',
'tabSpaces': 4,
# 插件
# prism:代码高亮、代码行数...codesnippet', 'uploadimage', 'prism', 'widget', 'lineutils', ]),
},
}
前端高亮代码配置
* 内容必须是代码块,即含有 pre 标签