我正在构建一个cms系统,在其中使用Bulma css框架https://bulma.io/
是否可以用布尔玛的相应名称替换羽毛笔中使用的类名?
例如
如果我在笔芯中心对齐一些文本,则我的html结果将如下所示。
<p class="ql-align-center">Text</p>
我希望它看起来像这样,所以它使用布尔玛的类名
<p class="has-text-centered">Text</p>
https://bulma.io/documentation/modifiers/typography-helpers/
我设法用此代码更改了课程的第一部分
Parchment = Quill.import('parchment');
var Align = new Parchment.Attributor.Class('align', 'has-text');
Quill.register(Align, true);
这给了我<p class="has-text-center">Text</p>
但是我如何将中心更改为居中?