1/* 2 * This file is part of CoCalc: Copyright © 2020 Sagemath, Inc. 3 * License: MIT (same as slate uses https://github.com/ianstormtaylor/slate/blob/master/License.md) 4 */ 5 6// Adapted from https://github.com/ianstormtaylor/slate/blob/master/site/examples/mentions.tsx 7 8import { Transforms } from "slate"; 9 10// A super naive version for testing. 11export const insertMention = (editor, value) => { 12 Transforms.insertText(editor, "@" + value); 13}; 14 15export { useMentions } from "./hook"; 16 17