Skip to content

Commit 6b768ec

Browse files
committed
Corrected misspelling of Blog-Doc
1 parent 1cb4fe6 commit 6b768ec

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Discovery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Bloc-Doc: Node.js App & SSG"
2+
title: "Blog-Doc: Node.js App & SSG"
33
tagline: "A tiny and dead simple static site generator written in JavaScript."
44
theme_color: "#e8b750"
55
git: "https://github.com/LebCit/blog-doc-space"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Blog-Doc is a `Node.js` app. You should have [Node.js](https://nodejs.org/en/) o
5555
Always go for the **LTS** version. At the time of writing those lines it's 18.12.1 !
5656

5757
To install it, just head over it's [Github repository](https://github.com/LebCit/blog-doc) and download it.
58-
You can also download it's zip by clicking on the following link : [Bloc-Doc ZIP](https://github.com/LebCit/blog-doc/archive/refs/heads/master.zip).
58+
You can also download it's zip by clicking on the following link : [Blog-Doc ZIP](https://github.com/LebCit/blog-doc/archive/refs/heads/master.zip).
5959

6060
Once everything is in place, extract the zipped files to a new folder and open it in your IDE (I use the one and only [VS Code](https://code.visualstudio.com/)).
6161
Then type in the terminal :
@@ -151,7 +151,7 @@ A list of available language codes can be found on the [RSS language codes page]
151151

152152
Bellow is a screenshot of the RSS feed of Blog-Doc in [Vivaldi browser](https://vivaldi.com/)
153153

154-
![Screenshot of Blog-Doc feed in Vivaldi browser](/public/images/bloc-doc-rss.xml.png)
154+
![Screenshot of Blog-Doc feed in Vivaldi browser](/public/images/blog-doc-rss.xml.png)
155155

156156
## Sitemap
157157

config/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"siteTitle":"Bloc-Doc","siteDescription":"A tiny blog and documentation SSG app","siteURL":"https://blocdoc-1-v3476171.deta.app/","rssSiteLanguage":"en-US","rssCopyright":"Copyright (c) 2022 - Present, LebCit under the MIT License","searchFeature":true,"addIdsToHeadings":true,"menuLinks":{"archive":"Archive","tags":"Tags","search":"Search","doc":"Documentation","license":"License","https://github.com/LebCit/blog-doc-space":"GitHub Repo","admin":"Admin⚡"},"footerCopyright":"App built with ❤️ by <a href='https://lebcit.github.io/'>LebCit</a>","adminLinks":{"admin":"Admin ⚡","admin-pages":"📃 Pages","admin-posts":"📝 Posts","admin-create":"➕ New","admin-config":"⚙️ Settings"}}
1+
{"siteTitle":"Blog-Doc","siteDescription":"A tiny blog and documentation SSG app","siteURL":"https://blocdoc-1-v3476171.deta.app/","rssSiteLanguage":"en-US","rssCopyright":"Copyright (c) 2022 - Present, LebCit under the MIT License","searchFeature":true,"addIdsToHeadings":true,"menuLinks":{"archive":"Archive","tags":"Tags","search":"Search","doc":"Documentation","license":"License","https://github.com/LebCit/blog-doc-space":"GitHub Repo","admin":"Admin⚡"},"footerCopyright":"App built with ❤️ by <a href='https://lebcit.github.io/'>LebCit</a>","adminLinks":{"admin":"Admin ⚡","admin-pages":"📃 Pages","admin-posts":"📝 Posts","admin-create":"➕ New","admin-config":"⚙️ Settings"}}

functions/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ async function build() {
138138
const titles = {
139139
docTitle: "Home",
140140
docDescription: "A tiny blog and documentation SSG app",
141-
title: "Bloc-Doc",
141+
title: "Blog-Doc",
142142
subTitle: "A tiny blog and documentation SSG app",
143143
}
144144

views/pages/doc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ A tiny blog and documentation SSG app.
5656

5757
## How to install Blog-Doc ? {# installing Blog-Doc}
5858

59-
Bloc-Doc is a [Deta Space](https://deta.space/) application.
59+
Blog-Doc is a [Deta Space](https://deta.space/) application.
6060
You can install it on your **Personal Cloud** by visiting the [Discovery page of Blog-Doc](https://deta.space/discovery/@lebcit/blocdoc) and click on the **Install on Space** button.
6161

6262
Enjoy 🚀
@@ -148,7 +148,7 @@ Bellow is a screenshot of the RSS feed of Blog-Doc in [Vivaldi browser](https://
148148
border-style: dashed;
149149
}
150150
</style>
151-
<img class="pure-img-responsive" src="/images/bloc-doc-rss.xml.png">
151+
<img class="pure-img-responsive" src="/images/blog-doc-rss.xml.png">
152152

153153
## Sitemap {# sitemap}
154154

views/posts/templates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ A simple example would be to create a contact form, this would take a serious am
1414

1515
## Architecture & Design
1616

17-
Bloc-Doc's architecture parses Markdown content to HTML which is injected into EJS templates that are rendered on routes matching the Markdown's file name.
17+
Blog-Doc's architecture parses Markdown content to HTML which is injected into EJS templates that are rendered on routes matching the Markdown's file name.
1818
The design is obviously at the templates' level. We can pass personalized CSS for a post or a page directly from the Markdown file, but structuring a whole web page from Markdown would be a time killer...
19-
This is why we use a templating language, EJS in Bloc-Doc, to generate our final HTML markup with the power of plain JavaScript.
19+
This is why we use a templating language, EJS in Blog-Doc, to generate our final HTML markup with the power of plain JavaScript.
2020
Another advantage is that we could completely change the design of a site for a particular page to whatever we like with a template, but this would result in a labyrinthine system if we try to achieve it from a Markdown file...
2121

2222
## How to use a template ?

0 commit comments

Comments
 (0)