dendron icon indicating copy to clipboard operation
dendron copied to clipboard

Provide a Nuxt.js template for publishing

Open mettekou opened this issue 1 year ago • 1 comments

Please select if your request is either something new or an enhancement

  • [ ] Enhancement of an existing Feature.
  • [X] Request of a new feature.

Please select the area your request applies to. (Multiple selections are Possible. You can leave blank if you're not sure.)

  • [ ] Workspace - VSCode workspace, vaults, Intellisense/autocomplete, Dendron settings
  • [ ] Lookup - Dendron's Lookup Command
  • [ ] Views - Dendron Preview, Tree View, Side Panels in the UI
  • [ ] Schema - Dendron Schemas
  • [ ] Pod - Data import from / export to Dendron
  • [X] Publish - External Site Publish
  • [ ] Markdown - Markdown features, such as syntax support and features

Is your feature request related to a problem? Please describe

I would like to publish my notes as a Nuxt.js website, since I am more familiar with Vue.js and Nuxt.js than with React.js and Next.js.

Describe the solution you'd like

Add a template for Nuxt.js.

Describe alternatives you've considered

Publishing my website using the Next.js template.

Additional context

None.

mettekou avatar Jun 13 '23 20:06 mettekou

Hello, i have create a project that can export Dendron vault notes into SSG-compatible Markdown named dendron-exports

You can create custom renderer to export your vault notes into Nuxt compatible markdown.

Nuxt support MDC that support block component. Block component can be used to render ref. We can convert Dendron ref into block component like this:

::ref{targetTitle="title" targetUrl="url" targetId="id"}
Ref content
::

levirs565 avatar Jun 28 '23 04:06 levirs565