mirror of
https://github.com/docmost/docmost.git
synced 2026-05-14 04:24:04 +08:00
d2629afff2
* feat: add heading extension with unique ID support and scroll functionality * Added unique id for heading * remove baseUrl heading storage * move heading to extensions package * WIP * support anchors in mentions * enhance scrolling functionality * nodeId function * fix nanoid import * Bring unique-id extension local * fixes * fix internal link scroll in public pages * add unique id server side * rename mention anchor to anchorId * capture first anchorId on paste --------- Co-authored-by: Romik <40670677+RomikMakavana@users.noreply.github.com>
26 lines
826 B
TypeScript
26 lines
826 B
TypeScript
export * from "./lib/trailing-node";
|
|
export * from "./lib/comment/comment";
|
|
export * from "./lib/utils";
|
|
export * from "./lib/math";
|
|
export * from "./lib/details";
|
|
export * from "./lib/table";
|
|
export * from "./lib/image";
|
|
export * from "./lib/video";
|
|
export * from "./lib/callout";
|
|
export * from "./lib/media-utils";
|
|
export * from "./lib/link";
|
|
export * from "./lib/selection";
|
|
export * from "./lib/attachment";
|
|
export * from "./lib/custom-code-block";
|
|
export * from "./lib/drawio";
|
|
export * from "./lib/excalidraw";
|
|
export * from "./lib/embed";
|
|
export * from "./lib/mention";
|
|
export * from "./lib/markdown";
|
|
export * from "./lib/search-and-replace";
|
|
export * from "./lib/embed-provider";
|
|
export * from "./lib/subpages";
|
|
export * from "./lib/highlight";
|
|
export * from "./lib/heading/heading";
|
|
export * from "./lib/unique-id";
|