Skip to content

Commit

Permalink
Fix: Export embed function
Browse files Browse the repository at this point in the history
  • Loading branch information
sandypockets committed Dec 17, 2023
1 parent 8c1cafc commit 63b5df6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/index.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "epic-remark",
"version": "0.1.13",
"version": "0.1.14",
"description": "Epic Remark is an all-in-one markdown to HTML processor built on top of remark",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
Expand Down
3 changes: 2 additions & 1 deletion src/index-dark.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ import addHeadingIds from './plugins/addHeadingIds.js';
import wrapElements from './plugins/wrapElements.js';
import addTableOfContents from './plugins/addTableOfContents.js';
import calculateReadingTime from './plugins/calculateReadingTime.js';
import embed from './plugins/embed.js'
import processMarkdown from './processMarkdown.js';
export { addHeadingIds, wrapElements, addTableOfContents, calculateReadingTime, processMarkdown };
export { addHeadingIds, wrapElements, addTableOfContents, calculateReadingTime, embed, processMarkdown };
3 changes: 2 additions & 1 deletion src/index-light.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ import addHeadingIds from './plugins/addHeadingIds.js';
import wrapElements from './plugins/wrapElements.js';
import addTableOfContents from './plugins/addTableOfContents.js';
import calculateReadingTime from './plugins/calculateReadingTime.js';
import embed from './plugins/embed.js';
import processMarkdown from './processMarkdown.js';
export { addHeadingIds, wrapElements, addTableOfContents, calculateReadingTime, processMarkdown };
export { addHeadingIds, wrapElements, addTableOfContents, calculateReadingTime, embed, processMarkdown };

0 comments on commit 63b5df6

Please sign in to comment.