Angular quill-editor 没有将文本左对齐

Angular quill-editor does not align text left

在这里,我试图将我的文本在 0-34(即一行)范围内向左对齐

代码片段:

quill.formatText(0, 34, {
      'color': "White",
      'align': 'left',
      'background-color': "Black"
}, 'api');

预期:

添加上述代码后 - 从索引 0 到长度 34 的文本应在编辑器中左对齐。

实际结果:

文本保持居中。

我需要帮助以不同的对齐方式对齐文本范围(left/right/center)

根据their documentation

For line level formats, such as text alignment, target the newline character or use the formatLine helper:

quill.formatText(0, 34, {
  'color': "White",
  'background-color': "Black"
}, 'api');

quill.formatLine(0, 1, 'align', 'left');