1

现在我制作markdown荧光笔。

高亮内联并不难。我使用 CompositeDecorator 来重写文本。https://facebook.github.io/draft-js/docs/advanced-topics-decorators.html

但我不能使用多行语法(例如,代码块)。默认情况下,换行符成为下一个块,装饰器由块到块处理。

下图是我的实现示例。我无法装饰代码块语法。

如何在 Draft-js 上制作多行荧光笔?

4

2 回答 2

0

我找到了工作。在 blockRendererFn 上通过 dand 检测 markdown 代码块。

// use blockRedererFn
<Editor
  blockRendererFn={(block) => blockRenderer(block, this.state.editorState)}
  editorState={this.state.editorState}
/>;

// detect code block and add fontFamily: monospace
// Example
//
// ```
// here
// ```
function blockRenderer(contentBlock, editorState) {
  const type = contentBlock.getType();
  if (type === "unstyled") {
    const allText = editorState.getCurrentContent().getPlainText();
    const allCount = countCodeBlockHeader(allText);
    if (allCount > 0 && allCount % 2 === 0) {
      const contentText = contentBlock.getText();
      const [before, after] = allText.split(contentText);
      const beforeCount = countCodeBlockHeader(before);
      const afterCount = countCodeBlockHeader(after);
      if (beforeCount % 2 === 1) {
        if (afterCount % 2 === 1) {
          return {
            component: (_props) => {
              return <code style={{
                fontFamily: "monospace",
                direction: "ltr",
                unicodeBidi: "bidi-override",
              }}>{contentText}</code>;
            },
            editable: true
          };
        }
      }
    }
  }
}

function countCodeBlockHeader(text) {
  return text
  .split("\n")
  .filter(l => l.match(new RegExp("^(```)")))
  .length;
}

但它很脏。

于 2016-08-15T13:06:23.323 回答
0

取决于您想要什么“突出显示”样式。如果您只想要一些颜色或字体大小,大多数情况下内联样式就足够了。检查颜色示例。

而对于块样式,您需要一个自定义 CSS 类并将块映射到您的类,请参阅

于 2016-08-12T04:44:55.023 回答