X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=README.md;fp=README.md;h=eea409b2df2ad29c2866a4e6dd18d6c91970194f;hb=1ddaa43a7dbfd819edb190152f88a02d6b81c110;hp=f9c4986508ed1334a92225f3a7f5bc738481a600;hpb=66f0e8daa6ffbf4d8522de90b14ad5dc4b6fdcfd;p=webi-installers%2F.git diff --git a/README.md b/README.md index f9c4986..eea409b 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ An install consists of 5 parts in 4 files: ``` my-new-package/ - - package.yash + - README.md (package info in frontmatter) - releases.js - install.sh - install.bat @@ -105,27 +105,22 @@ node _webi/test.js ./new-package/ Just copy the format from any of the existing packages. It's like this: -`package.yash`: +`README.md`: -```` -# title: Node.js -# homepage: https://nodejs.org -# tagline: JavaScript V8 runtime -# description: | -# Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine -# examples: | -# ```bash -# node -e 'console.log("Hello, World!")' -# > Hello, World! -# ``` - -END -```` - -This is a dumb format. We know. Historical accident (originally these were in -bash comments). +````md +--- +title: Node.js +homepage: https://nodejs.org +tagline: JavaScript V8 runtime +description: | + Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine +--- -It's in the TODOs to replace this with either YAML or Markdown. +```bash +node -e 'console.log("Hello, World!")' +> Hello, World! +``` +```` ### 1. Fetch Releases