Skip to content

OakarminIron/Obsidian

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Knowledge Graph Repository

Welcome to my Knowledge Graph Repository! This repository contains categorised knowledge and notes on various topics. To view and explore the contents, you will need to download and install Obsidian, a personal knowledge base and note-taking software that operates on Markdown files.

Installation

To install Obsidian, please follow the instructions provided on the official Obsidian website:

https://obsidian.md

Sessions

The knowledge in this repository is categorised into the following sessions:

  1. Business IT
  2. Business
  3. IT
  4. Odoo
  5. Science
  6. Notes (My Notes)

Each session contains relevant notes, articles, and resources related to the respective topic.

Usage

To explore the knowledge in this repository, follow these steps:

  1. Clone or download this repository to your local machine.
  2. Install and open Obsidian.
  3. Open the cloned/downloaded repository folder in Obsidian.
  4. Navigate to the desired session folder to access the Markdown files containing the knowledge and notes.

Feel free to explore, learn, and contribute to the knowledge graph. Enjoy!

==================================================================================================================

Markdown Cheat Sheet

Thanks for visiting The Markdown Guide! This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

Heading

H1

H2

H3

Bold

bold text

Italic

italicized text

Blockquote

blockquote

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List

  • First item
  • Second item
  • Third item

Code code

Horizontal Rule


Link

Markdown Guide

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

Syntax Description
Header Title
Paragraph Text

Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Strikethrough

The world is flat.

Task List

  • Write the press release
  • Update the website
  • Contact the media

(See also Copying and Pasting Emoji)

I need to highlight these ==very important words==. This is an %%inline%% comment. %% This is a block comment. Block comments can span multiple lines. %%

This is a simple footnote1.

Image

alt text YouTube link.

Website <iframe src="https://obsidian.md/"></iframe>

Footnotes

  1. This is the referenced text. [^2]: Add 2 spaces at the start of each new line. This lets you write footnotes that span multiple lines. [^note]: Named footnotes still appears as numbers, but can make it easier to identify and link references.