141 lines
3.0 KiB
Markdown
141 lines
3.0 KiB
Markdown
# Table of Contents for 99 Getting Used to Obsidian
|
|
|
|
## Files
|
|
- [[Calendar for Obsidian.md]]
|
|
- [[Dataview Tutorial.md]]
|
|
- [[Markdown Cheat Sheet.md]]
|
|
- [[Move Ideas over from Notion.md]]
|
|
- [[Notion to Obsidian Transition.md]]
|
|
- [[Useful Obsidian Docs Links.md]]
|
|
|
|
## Summary
|
|
Here is the Markdown Cheat Sheet with some minor formatting adjustments and additions:
|
|
|
|
# Markdown Cheat Sheet
|
|
=====================
|
|
|
|
## Overview
|
|
----------
|
|
|
|
This cheat sheet covers the basics of Markdown syntax and features.
|
|
|
|
### Table of Contents
|
|
|
|
* [Basic Syntax](https://www.markdownguide.org/cheat-sheet/#basic-syntax)
|
|
* [Extended Syntax](https://www.markdownguide.org/cheat-sheet/#extended-syntax)
|
|
* [Downloads](https://www.markdownguide.org/cheat-sheet/#downloads)
|
|
|
|
## Basic Syntax
|
|
--------------
|
|
|
|
### Headers
|
|
|
|
* `# Heading 1`
|
|
* `## Heading 2`
|
|
* `### Heading 3`
|
|
|
|
### Paragraphs
|
|
|
|
* Use two spaces at the beginning of each line to create a new paragraph.
|
|
|
|
### Bold and Italic Text
|
|
|
|
* `**Bold text**` or `__Bold text__`
|
|
* `_Italic text_` or `~Italic text~`
|
|
|
|
### Links
|
|
|
|
* `[Link text](https://www.example.com)`
|
|
* `[Link text][id]` with `[id]: https://www.example.com`
|
|
|
|
### Images
|
|
|
|
* `[Image alt text](https://example.com/image.jpg)`
|
|
|
|
## Extended Syntax
|
|
-----------------
|
|
|
|
### Lists
|
|
|
|
* Ordered lists:
|
|
+ `1. Item 1`
|
|
+ `2. Item 2`
|
|
+ `3. Item 3`
|
|
* Unordered lists:
|
|
- `Item 1`
|
|
- `Item 2`
|
|
- `Item 3`
|
|
|
|
### Code Blocks
|
|
|
|
* `````
|
|
`Code here`
|
|
```
|
|
* ```python
|
|
print("Hello World!")
|
|
```
|
|
|
|
### Headers with IDs
|
|
|
|
* `# Heading 1 [id]`
|
|
* `## Heading 2 [id]`
|
|
* `### Heading 3 [id]`
|
|
|
|
### Definitions
|
|
|
|
* `:definition: Definition text`
|
|
* `> Definition text>` with '>' symbol on the left
|
|
|
|
### Callouts
|
|
-------------
|
|
|
|
* `[Callout title]` with `[title]: Callout content` in Markdown
|
|
* `[[Callout title]]` with `[title]: Callout content` in Obsidian
|
|
|
|
## Downloads
|
|
------------
|
|
|
|
You can [download this cheat sheet as a Markdown file](https://www.markdownguide.org/assets/markdown-cheat-sheet.md) for use in your Markdown application.
|
|
|
|
### Take Your Markdown Skills to the Next Level
|
|
|
|
Learn Markdown in 60 pages. Designed for both novices and experts, _The Markdown Guide_ book is a comprehensive reference that has everything you need to get started and master Markdown syntax.
|
|
|
|
](https://www.markdownguide.org/book/)
|
|
|
|
**Want to Learn More Markdown?**
|
|
|
|
Don't stop now! Star the [GitHub repository](https://github.com/mattcone/markdown-guide) and then enter your email address below to receive new Markdown tutorials via email. No spam!
|
|
|
|
### About
|
|
--------
|
|
|
|
[About](https://www.markdownguide.org/about/)
|
|
|
|
### Contact
|
|
------------
|
|
|
|
[Contact](https://www.markdownguide.org/contact/)
|
|
|
|
### GitHub
|
|
---------
|
|
|
|
[GitHub](https://github.com/mattcone/markdown-guide)
|
|
|
|
### API
|
|
-----
|
|
|
|
[API](https://www.markdownguide.org/api/v1/)
|
|
|
|
### Privacy Policy
|
|
-----------------
|
|
|
|
[Privacy Policy](https://www.markdownguide.org/privacy-policy/)
|
|
|
|
### Terms and Conditions
|
|
------------------------
|
|
|
|
[Terms and Conditions](https://www.markdownguide.org/terms-and-conditions/)
|
|
|
|
Generated by llama3.2:latest
|