From 50bdc6a9062b5957c9ed7c073952fab79680c704 Mon Sep 17 00:00:00 2001 From: sg Date: Thu, 5 Jun 2025 13:45:28 +0000 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a55e93c..fc59b74 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ _the `public` directory is ready to be published._ The resulting HTML files are rendered from the Markdown source files in the `content` folder, so even the plain text source files will work. The correct HTML may be included directly in the source file and will be rendered both in the preview card and in the HTML page. `frontmatter` header is recommended, specifying the following values: -- `title`: "Will be rendered in the preview card and in the HTM page" (String) +- `title`: "Will be rendered in the preview card and in the HTML page" (String) - `omit_second_title`: "Should the title be displayed immediately above the text in the HTML page (HTML page always also displays the title in the header) (Boolean, "True|False") - `date`: Timestamp, like the date and time the text was created. ("2000-01-01T00:00:00+03:00") @@ -46,7 +46,7 @@ Configuration is minimal and done via the self-explanatory `config.py` file. Individual HTML pages can be customized via CSS and Javascript. To do so, put a '.css' and/or '.js' file into the `content` directory and make sure those files have the same name as the source '.md file'. E.g.: - `article-01.md` - source file rendered to HTML. - `article-01.css` - a CSS file with custom styles for the resulting HTML page. -- `article-01.js` - a Javasscript file with custom logic for the resulting HTML page. +- `article-01.js` - a Javascript file with custom logic for the resulting HTML page. ## Directories and structure ### Output directories From d25f3cf8f4b148d0295d6c1d6773ce7d46cb0398 Mon Sep 17 00:00:00 2001 From: sg Date: Thu, 5 Jun 2025 13:47:41 +0000 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc59b74..4915bb5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The resulting HTML files are rendered from the Markdown source files in the `con The correct HTML may be included directly in the source file and will be rendered both in the preview card and in the HTML page. `frontmatter` header is recommended, specifying the following values: - `title`: "Will be rendered in the preview card and in the HTML page" (String) -- `omit_second_title`: "Should the title be displayed immediately above the text in the HTML page (HTML page always also displays the title in the header) (Boolean, "True|False") +- `omit_second_title`: Should the title be displayed immediately above the text in the HTML page (HTML page always also displays the title in the header) (Boolean, "True|False") - `date`: Timestamp, like the date and time the text was created. ("2000-01-01T00:00:00+03:00") ## Configuration From c42cfb159777b296b7373c1b28ba1bd0c324321a Mon Sep 17 00:00:00 2001 From: sg Date: Thu, 5 Jun 2025 13:47:55 +0000 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4915bb5..cf7f886 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Simplistic static site generator ## Quickstart `git clone https://git.exocortex.ru/Exocortex/hydrogen.git` -`cd hydrogen && pip install -r requirements` +`cd hydrogen && pip install -r requirements.txt` _put some Markdown files into the `content` directory._