Pull-Request [ariasae-9-27-2023] from Obsidian (#11)

* PUSH NOTE : The Moon (Earth).md

* PUSH NOTE : Mermaid JS Graphs.md

* PUSH NOTE : Static Site Generators.md

* PUSH NOTE : Projects Overview.md

* PUSH NOTE : Public Journal.md

* PUSH NOTE : Markdown Demo.md

* PUSH NOTE : index.md

* PUSH NOTE : Guide.md
This commit is contained in:
Miguel Pimentel 2023-09-27 15:36:12 -05:00 committed by GitHub
parent adb33ee835
commit ae8c2813b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 202 additions and 25 deletions

View File

@ -3,19 +3,21 @@ title: Garden Exploration Guide
description: Want to explore the garden but don't know where to start? You came to the right place.
tags:
- meta
lastmod: 2023-09-22
lastmod: 2023-09-27
compartir: true
---
Feeling lost around the site? No worries, here's a list of pages you can visit visit:
Feeling lost around the site? No worries, here's a list of pages you can visit:
* [[Public Journal]]
* [[Free Facts]]
* [[Unlock Firefox Sidebar]]
* [[Poetry]]
* [[Callouts]]
* [[Markdown Demo]]
* [[Mermaid JS Graphs]]
* [[Tools]]
* [[Projects Overview]]
* [[Projects Overview|Projects]]
* [[The Moon (Earth)]]
Have a wonderful time!

View File

@ -1,11 +1,17 @@
---
title: Markdown Demo
tags:
- markdown
- reference
compartir: true
lastmod: 2023-09-18
lastmod: 2023-09-26
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu feugiat sapien. Aenean ligula nunc, laoreet id sem in, interdum bibendum felis.
<!-- more -->
# H1 Heading 1
## H2 Heading 2
@ -24,19 +30,14 @@ Text can be **bold**, _italic_, or ~~strikethrough~~.
You can [link](https://example.dom/) to external pages. and other internal [[Markdown|links]].
## Lists
## Blockquotes
* Item 1
* Item 2
* Nested item
* Item 3
### Example 1
1. Line item
2. Line item
1. Nested item
3. Line item
> This is a blockquote
> with several lines
## Blockquote
### Example 2
> ## This is a header.
> 1. This is the first list item.
@ -46,6 +47,26 @@ You can [link](https://example.dom/) to external pages. and other internal [[Mar
>
> Markdown.generate();
## Lists
### Ordered List
1. First item
2. Second item
3. Third item
### Unordered List
* List item
* Another item
* And another item
### Nested List
* Item
1. First Sub-item
2. Second Sub-item
## Code
### Inline Code
@ -82,12 +103,18 @@ var fun = function lang(l) {
## Tables
|head one|head two|head three|
|---|---|---|
|---|:---:|---:|
|ok|good swedish fish|nice|
|out of stock|good and plenty|nice|
|ok|good `oreos`|hmm|
|ok|good `zoute` drop|yumm|
## Inline Markdown Within Tables
| Inline&nbsp;&nbsp;&nbsp; | Markdown&nbsp;&nbsp;&nbsp; | In&nbsp;&nbsp;&nbsp; | Table |
| ---------- | --------- | ----------------- | ---------- |
| _italics_ | **bold** | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code` |
## Horizontal Rule
---
@ -107,3 +134,15 @@ var fun = function lang(l) {
## Images
![image](https://just-the-docs.com/assets/images/small-image.jpg)
## Other Elements — Abbr, Sub, Sup, Kbd, Mark
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
H<sub>2</sub>O
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.

View File

@ -0,0 +1,87 @@
---
title: Mermaid Graphs
lastmod: 2023-09-27
compartir: true
---
Mermaid JS is a JavaScript based diagramming and charting tool that renders Markdown-inspired text definitions to create and modify diagrams dynamically. Mermaid lets you create diagrams and visualizations using text and code.
Check out the [Documentation](https://mermaid.js.org/intro/).
## Graph Examples
### Git Graph
https://mermaid.js.org/syntax/gitgraph.html
```
gitGraph
   commit
   commit
   branch develop
   checkout develop
   commit
   commit
   checkout main
   merge develop
   commit
   commit
```
```mermaid
gitGraph
   commit
   commit
   branch develop
   checkout develop
   commit
   commit
   checkout main
   merge develop
   commit
   commit
```
### Mindmap
https://mermaid.js.org/syntax/mindmap.html
```
mindmap
  root((mindmap))
    Origins
      Long history
      ::icon(fa fa-book)
      Popularisation
        British popular psychology author Tony Buzan
    Research
      On effectiveness<br/>and features
      On Automatic creation
        Uses
            Creative techniques
            Strategic planning
            Argument mapping
    Tools
      Pen and paper
      Mermaid
```
```mermaid
mindmap
  root((mindmap))
    Origins
      Long history
      ::icon(fa fa-book)
      Popularisation
        British popular psychology author Tony Buzan
    Research
      On effectiveness<br/>and features
      On Automatic creation
        Uses
            Creative techniques
            Strategic planning
            Argument mapping
    Tools
      Pen and paper
      Mermaid
```

View File

@ -1,7 +1,7 @@
---
title: Projects
compartir: true
lastmod: 2023-09-22
lastmod: 2023-09-27
---
A few of my projects.
@ -33,9 +33,16 @@ Possible replacement for my current blog.
---
### Obsidian Sample Theme
Personal Obsidian theme.
[Source](https://github.com/semanticdata/obsidian-sample-theme)
---
### Obsidian Starter Vault
Opinionated Obsidian Starter.
Opinionated Obsidian starter.
[Source](https://github.com/semanticdata/obsidian-test-vault)
---
@ -47,7 +54,7 @@ A Firefox Extension that removes all states starting with "M" except Minnesota w
---
### Tabspace (Firefox)
### Tabspace (Browser extensions)
Port of Chrome extension Tabspace to Firefox.
[Source](https://github.com/semanticdata/tabspace)
@ -72,7 +79,7 @@ A simple Firefox Theme featuring minimal dark mode colors, background pattern, a
---
### Prose Poetry
### Prose Poetry (Jekyll Website)
"Prose Poetry" is my old Blog in Spanish. All articles contained herein were written in the first half of 2010.
"Prose Poetry" is my old blog in Spanish. All articles contained herein were written in the first half of 2010.
[Source](https://github.com/semanticdata/prose-poetry)

View File

@ -3,14 +3,28 @@ title: Public Journal
description: This new section will explore the concept of maintaining a Public Journal. It takes inspiration from The Journal of an Enigmatic Mind.
compartir: true
enableToc: true
lastmod: 2023-09-22
lastmod: 2023-09-27
---
> [!info] Acknowledgements
>
> This page takes inspiration from the [Journal of an Enigmatic Mind](https://speyllsite.pages.dev/journal/). It explores the concept of keeping a public journal, something I haven't done before. Anything that encourages me to write more is a positive in my opinion.
---
## 2023-09-27
**Notes**
* Continue testing on [Zola Tale]. Implemented a new, from the grounds up, dark mode.
* Revisited a few text editors I have been watching for a bit. Looked at [Lapce](https://github.com/lapce/lapce), [Lite XL](https://github.com/lite-xl/lite-xl), and [ecode](https://github.com/SpartanJ/ecode). They are looking good, but they are not a point in where I want to dig deeper into using them.
**GitHub**
* Created a new repo [Obsidian Sample Theme](https://github.com/semanticdata/obsidian-sample-theme) with the aim to contain my newest project, a Obsidian theme. I have put together some basic CSS properties I'm playing around with.
**Digital Garden**
* Synchronized the forked repo with it's base.
* Updated dependencies and _package-lock_.
* Updated the [[Guide|Garden Exploration Guide]]. Added additional links.
> [Link Of The Day](https://en.wikipedia.org/wiki/Aaron_Swartz?useskin=vector)
## 2023-09-22

View File

@ -0,0 +1,12 @@
---
title: Stratic Site Generator
tags:
- markdown
lastmod: 2023-09-27
compartir: true
---
Static site generators (SSGs) are engines that use text input files (such as [[Markdown]], [reStructuredText](https://docutils.sourceforge.io/rst.html), and [AsciiDoc](https://asciidoc.org/)) to generate static web pages. SSGs are typically for rarely-changing, informative content, such as product pages, news websites, (software) documentation, manuals, and blogs.
Popular choices in SSGs include [Jekyll](https://jekyllrb.com/), [Hugo](https://gohugo.io/), and [Zola](https://www.getzola.org/).

View File

@ -0,0 +1,16 @@
---
title: The Moon (Earth)
lastmod: 2023-09-27
tags:
- wip
compartir: true
---
Earth's only natural satellite. Orbits around the Earth at an average distance of 384,400 km (238,900 mi).
The usual English proper name for Earth's natural satellite is simply _Moon_. Occasionally, the name **Luna** is used in scientific writing and science fiction to distinguish our moon from others. **Cynthia** is another poetic name, though rare, for the Moon personified as a goddess, while **Selene** (literally "Moon") is the Greek goddess of the Moon.
### Pictures
![the moon zoomed in|400](https://upload.wikimedia.org/wikipedia/commons/e/e1/FullMoon2010.jpg)

View File

@ -2,10 +2,10 @@
title: "Welcome!"
description: "Forgetful Notes—A digital garden of knowledge. A platform for my learning and creative endeavours. A space for thinking through, building upon, and coming back to."
compartir: true
lastmod: 2023-09-25
lastmod: 2023-09-27
---
![saplings from above](https://raw.githubusercontent.com/semanticdata/public-test/main/PNG/leaflets-dithered.png)
<!-- ![saplings from above](https://raw.githubusercontent.com/semanticdata/public-test/main/PNG/leaflets-dithered.png) -->
I'm Miguel, and you have come across **Forgetful Notes**—my [[Digital Garden|digital garden]] of knowledge. Come on in and make yourself comfortable.