###### NAVIGATE - BACK : [[OBSIDIAN.markdown]]
----
>[!info]- [[ENIGMAS]]
----
#### AENIGMAS
YOU CAN USE
``==`
for ==highlighting==
----
MARKDOWN HELP
https://wiki.nikiv.dev/writing/markdown
-----
### Basic Formatting
- **Bold**: `**Bold**` or `__Bold__`
- **Italic**: `*Italic*` or `_Italic_`
- **Strikethrough**: `~~Strikethrough~~`
### Headings
- **Heading 1**: `# Heading 1`
- **Heading 2**: `## Heading 2`
- **Heading 3**: `### Heading 3`
- ... up to Heading 6
### Lists
- **Unordered List**:
markdownCopy code
`- Item 1 - Item 2 - Subitem 2.1 - Subitem 2.2`
- **Ordered List**:
markdownCopy code
`1. First item 2. Second item 1. Subitem 2.1 2. Subitem 2.2`
### Links
- **External Link**: `[Google](https://www.google.com)`
- **Internal Link**: `[[Note Name]]` or `[[Note Name|Custom Text]]`
### Images
- **Image Embed**: ``
### Code
- **Inline Code**: `` `Inline Code` ``
- **Code Block**:
goCopy code
` ``` Code block ``` `
### Blockquotes
- **Blockquote**: `> This is a blockquote`
### Tables
- **Table**:
cssCopy code
`| Header 1 | Header 2 | Header 3 | | -------- | -------- | -------- | | Row 1 | Data | Data | | Row 2 | Data | Data |`
### Task Lists
- **Tasks**:
scssCopy code
`- [ ] Task 1 - [x] Task 2 (completed) - [ ] Task 3`
### Horizontal Line
- **Horizontal Rule**: `---`
### Highlight
- **Highlight**: `==highlighted text==` (Note: Highlight syntax may depend on the theme or plugin in use)
### Footnotes
- **Footnote Reference**: `Here's a sentence with a footnote. [^1]`
- **Footnote Definition**:
markdownCopy code
`[^1]: This is the footnote.`
### Mathematical Expressions
- **Inline Math**: `$E=mc^2
- **Math Block**:
rubyCopy code
`$ E=mc^2 $`
### Transclusion (Embedding Other Notes or Sections)
- **Embed Entire Note**: `![[Note Name]]`
- **Embed Specific Section**: `![[Note Name#Section]]`
### Custom Obsidian Formatting
- **Internal Transclusion**: `![[Note]]` to embed another note inside the current note.
- **Block Reference**: `^blockref` to create a block reference, and `[[Note^blockref]]` to link to it.
MORE IN PLUGINS ;)
## ENIGMAS
-----
TOOL FOR INFO ON MARKDOWN
https://www.markdownguide.org/tools/obsidian/
>[!quote]- NARU
><iframe allowfullscreen src="https://www.markdownguide.org/tools/obsidian/" width="100%" height="500" ></iframe>
------