First go please to the Internal Developer Platform idp.softreck.dev
Contribution information for projects development
Contribution information for projects development
showdownjs/showdown: A bidirectional Markdown to HTML to Markdown converter written in Javascript
Getting Started | Eleventy, a simpler static site generator.
Let’s create it with npm init. The -y parameter tells npm to skip all the questions and just use the defaults.
npm init -y
install and save Eleventy into our project’s package.json by running:
npm install --save-dev @11ty/eleventy
run Eleventy
npx @11ty/eleventy
serve
npx @11ty/eleventy --serve
npx eleventy
Or build and host locally for local development
npx eleventy --serve
Or build automatically when a template changes:
npx eleventy --watch
Or in debug mode:
DEBUG=* npx eleventy