diff --git a/README.md b/README.md index 683d119..2fd0117 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Use the all-in-one `processMarkdown` function to format your markdown into HTML, ## Currently supported frameworks: * Next.js +* Nuxt.js ### Dependencies - `remark`: `^15.0.1` @@ -39,6 +40,9 @@ Generates a table of contents based on the document's headings. Users can config ## `calculateReadingTime` Estimates the reading time of the provided markdown content. The calculation is based on a standard words-per-minute metric, which can be adjusted via options. The reading time is returned in minutes, offering a quick overview of the content length. +## `embed` +Embeds content from external sources, such as YouTube videos and GitHub gists with simple syntax like `!embed https://your-embed-url.com/` + ### Notes Processed markdown always returns auto-linked URLs. This means that if you have a URL in your markdown, it will be converted to a clickable link. diff --git a/package.json b/package.json index ae4a1c7..7b22ff7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epic-remark", - "version": "0.1.12", + "version": "0.1.13", "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",