diff --git a/Publisher-For-MkDocs-Workflow.md b/Publisher-For-MkDocs-Workflow.md
new file mode 100644
index 0000000..75ae1f7
--- /dev/null
+++ b/Publisher-For-MkDocs-Workflow.md
@@ -0,0 +1,7 @@
+An overall the best workflow is to do:
+
+- `mkdocs serve` while writing documentation localy to see how it looks
+- before push to the repo do `mkdocs build -c` to see if it will build correctly
+- push to the repo and let GH Action workflow to deploy a page to GH Pages
+
+THANKS, MAQ!!!
\ No newline at end of file
diff --git a/docs/01-home.md b/docs/01-home.md
index 6df5723..59e11c4 100644
--- a/docs/01-home.md
+++ b/docs/01-home.md
@@ -1,10 +1,12 @@
---
title: Home
-slug: 01-home
-description: Example Publisher for MkDocs Site
+slug: home
+date: 2024-08-10 12:18:44
+update: 2024-08-11 06:53:03
+publish: "true"
+tags: []
+categories:
---
-
-# Welcome to Sample Publisher for MkDocs Site
+## Welcome to Sample Publisher for MkDocs Site
For full documentation visit [Publisher for MkDocs](https://mkdocs-publisher.github.io/).
-
diff --git a/docs/02-Blog/README.md b/docs/02-Blog/README.md
index 96ecc65..c34982e 100644
--- a/docs/02-Blog/README.md
+++ b/docs/02-Blog/README.md
@@ -1,4 +1,10 @@
---
title: Blog
slug: blog
----
\ No newline at end of file
+date: 2024-08-10 01:52:54
+update: 2024-08-11 06:53:21
+publish: "true"
+tags: []
+categories:
+---
+## Blog
diff --git a/docs/02-Blog/first-post.md b/docs/02-Blog/first-post.md
index d8cb2bd..e2b1b8e 100644
--- a/docs/02-Blog/first-post.md
+++ b/docs/02-Blog/first-post.md
@@ -1,16 +1,16 @@
---
-title: First Blog Post
-slug: first-post
-date: 2024-08-10 12:02:00
+title: first-post
+slug: lorem-ipsum
+date: 2024-08-10 12:01:26
+update: 2024-08-11 06:53:36
+publish: "true"
+tags: [tag1, tag2]
categories: cat1, cat2
-tags: tag1, tag2
---
+## Lorem Ipsum
-### Lorem Ipsum
-
-
-"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."
-"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain..."
+"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit…"
+"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain…"
diff --git a/docs/03-Narkdown-Examples/Advanced formatting syntax.md b/docs/03-Narkdown-Examples/Advanced formatting syntax.md
deleted file mode 100644
index b4c3148..0000000
--- a/docs/03-Narkdown-Examples/Advanced formatting syntax.md
+++ /dev/null
@@ -1,192 +0,0 @@
----
-aliases:
- - Advanced Markdown
----
-Learn how to add advanced formatting syntax to your notes.
-
-## Tables
-
-You can create table using vertical bars (`|`) and hyphens (`-`). Vertical bars separate columns, and hyphens define the column header.
-
-```md
-| First name | Last name |
-| ---------- | --------- |
-| Max | Planck |
-| Marie | Curie |
-```
-
-| First name | Last name |
-| ---------- | --------- |
-| Max | Planck |
-| Marie | Curie |
-
-The vertical bars on either side of the table are optional.
-
-Cells don't need to be perfectly aligned with the columns. Each header row must have at least two hyphens.
-
-```md
-First name | Last name
--- | --
-Max | Planck
-Marie | Curie
-```
-
-### Format content within a table
-
-You can use [[basic formatting syntax]] to style content within a table.
-
-| First column | Second column |
-| ------------------ | --------------------------------------- |
-| [[Internal links]] | Link to a file _within_ your **vault**. |
-| [[Embed files]] | ![[Engelbart.jpg\|100]] |
-
-> [!note] Vertical bars in tables
-> If you want to use [[aliases]], or to [[Basic formatting syntax#External images|resize an image]] in your table, you need to add a `\` before the vertical bar.
->
-> ```md
-> First column | Second column
-> -- | --
-> [[Basic formatting syntax\|Markdown syntax]] | ![[Engelbart.jpg\|200]]
-> ```
->
-> First column | Second column
-> -- | --
-> [[Basic formatting syntax\|Markdown syntax]] | ![[Engelbart.jpg\|200]]
-
-You can align text to the left, right, or center of a column by adding colons (`:`) to the header row.
-
-```md
-Left-aligned text | Center-aligned text | Right-aligned text
-:-- | :--: | --:
-Content | Content | Content
-```
-
-Left-aligned text | Center-aligned text | Right-aligned text
-:-- | :--: | --:
-Content | Content | Content
-
-## Diagram
-
-You can add diagrams and charts to your notes, using [Mermaid](https://mermaid-js.github.io/). Mermaid supports a range of diagrams, such as [flow charts](https://mermaid.js.org/syntax/flowchart.html), [sequence diagrams](https://mermaid.js.org/syntax/sequenceDiagram.html), and [timelines](https://mermaid.js.org/syntax/timeline.html).
-
-> [!tip]
-> You can also try Mermaid's [Live Editor](https://mermaid-js.github.io/mermaid-live-editor) to help you build diagrams before you include them in your notes.
-
-To add a Mermaid diagram, create a `mermaid` [[Basic formatting syntax#Code blocks|code block]].
-
-````md
-```mermaid
-sequenceDiagram
- Alice->>+John: Hello John, how are you?
- Alice->>+John: John, can you hear me?
- John-->>-Alice: Hi Alice, I can hear you!
- John-->>-Alice: I feel great!
-```
-````
-
-```mermaid
-sequenceDiagram
- Alice->>+John: Hello John, how are you?
- Alice->>+John: John, can you hear me?
- John-->>-Alice: Hi Alice, I can hear you!
- John-->>-Alice: I feel great!
-```
-
-````md
-```mermaid
-graph TD
-
-Biology --> Chemistry
-```
-````
-
-```mermaid
-graph TD
-
-Biology --> Chemistry
-```
-
-### Linking files in a diagram
-
-You can create [[internal links]] in your diagrams by attaching the `internal-link` [class](https://mermaid.js.org/syntax/flowchart.html#classes) to your nodes.
-
-````md
-```mermaid
-graph TD
-
-Biology --> Chemistry
-
-class Biology,Chemistry internal-link;
-```
-````
-
-```mermaid
-graph TD
-
-Biology --> Chemistry
-
-class Biology,Chemistry internal-link;
-```
-
-> [!note]
-> Internal links from diagrams don't show up in the [[Graph view]].
-
-If you have many nodes in your diagrams, you can use the following snippet.
-
-````md
-```mermaid
-graph TD
-
-A[Biology]
-B[Chemistry]
-
-A --> B
-
-class A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z internal-link;
-```
-````
-
-This way, each letter node becomes an internal link, with the [node text](https://mermaid.js.org/syntax/flowchart.html#a-node-with-text) as the link text.
-
-> [!note]
-> If you use special characters in your note names, you need to put the note name in double quotes.
->
-> ```
-> class "⨳ special character" internal-link
-> ```
->
-> Or, `A["⨳ special character"]`.
-
-For more information about creating diagrams, refer to the [official Mermaid docs](https://mermaid.js.org/intro/).
-
-## Math
-
-You can add math expressions to your notes using [MathJax](http://docs.mathjax.org/en/latest/basic/mathjax.html) and the LaTeX notation.
-
-To add a MathJax expression to your note, surround it with double dollar signs (`$$`).
-
-```md
-$$
-\begin{vmatrix}a & b\\
-c & d
-\end{vmatrix}=ad-bc
-$$
-```
-
-$$
-\begin{vmatrix}a & b\\
-c & d
-\end{vmatrix}=ad-bc
-$$
-
-You can also inline math expressions by wrapping it in `$` symbols.
-
-```md
-This is an inline math expression $e^{2i\pi} = 1$.
-```
-
-This is an inline math expression $e^{2i\pi} = 1$.
-
-For more information about the syntax, refer to [MathJax basic tutorial and quick reference](https://math.meta.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference).
-
-For a list of supported MathJax packages, refer to [The TeX/LaTeX Extension List](http://docs.mathjax.org/en/latest/input/tex/extensions/index.html).
diff --git a/docs/03-Narkdown-Examples/Basic formatting syntax.md b/docs/03-Narkdown-Examples/Basic formatting syntax.md
deleted file mode 100644
index f028e04..0000000
--- a/docs/03-Narkdown-Examples/Basic formatting syntax.md
+++ /dev/null
@@ -1,373 +0,0 @@
----
-aliases:
- - How to/Format your notes
- - Markdown
----
-
-Learn how to apply basic formatting to your notes, using [Markdown](https://daringfireball.net/projects/markdown/). For more advanced formatting syntax, refer to [[Advanced formatting syntax]].
-
-## Paragraphs
-
-To create paragraphs, use a blank line to separate one or more lines of text.
-
-```
-This is a paragraph.
-
-This is another paragraph.
-```
-
-> [!note]- Multiple blank spaces
-> Multiple adjacent blank spaces in and between paragraphs collapse to a single space when displaying a note in [[Edit and preview Markdown#Editor views|Reading view]] and on [[Introduction to Obsidian Publish|Obsidian Publish]] sites.
->
-> ```md
-> Multiple adjacent spaces
->
->
->
-> and multiple newlines between paragraphs.
-> ```
->
-> > Multiple adjacent spaces
-> >
-> >
-> >
-> > and multiple newlines between paragraphs.
->
-> If you want to add multiple spaces, you can add ` ` (blank space) and `
` (newline) to your note.
-
-## Headings
-
-To create a heading, add up to six `#` symbols before your heading text. The number of `#` symbols determines the size of the heading.
-
-```md
-# This is a heading 1
-## This is a heading 2
-### This is a heading 3
-#### This is a heading 4
-##### This is a heading 5
-###### This is a heading 6
-```
-
-%% These headings use HTML to avoid cluttering the Outline/Table of contents %%
-