Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/editors/slate/slate-mentions/index.ts
1698 views
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
8
import { Transforms } from "slate";
9
10
// A super naive version for testing.
11
export const insertMention = (editor, value) => {
12
Transforms.insertText(editor, "@" + value);
13
};
14
15
export { useMentions } from "./hook";
16
17