forked from mattcone/markdown-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
--- | ||
title: Obsidian | ||
category: "notes" | ||
description: "Obsidian is a Markdown note-taking application loaded with features." | ||
icon: obsidian.png | ||
website: https://obsidian.md/ | ||
syntax: | ||
- id: headings | ||
available: y | ||
- id: paragraphs | ||
available: y | ||
- id: line-breaks | ||
available: y | ||
- id: bold | ||
available: y | ||
- id: italic | ||
available: y | ||
- id: blockquotes | ||
available: y | ||
- id: ordered-lists | ||
available: y | ||
- id: unordered-lists | ||
available: y | ||
- id: code | ||
available: y | ||
- id: horizontal-rules | ||
available: y | ||
- id: links | ||
available: y | ||
notes: "You can link to other notes in Obsidian by using the `[[file name]]` syntax." | ||
- id: images | ||
available: y | ||
- id: tables | ||
available: y | ||
- id: fenced-code-blocks | ||
available: y | ||
- id: syntax-highlighting | ||
available: y | ||
notes: "See the [list of supported languages](https://prismjs.com/#supported-languages)." | ||
- id: footnotes | ||
available: y | ||
- id: heading-ids | ||
available: n | ||
- id: definition-lists | ||
available: n | ||
- id: strikethrough | ||
available: y | ||
- id: task-lists | ||
available: y | ||
- id: emoji-cp | ||
available: y | ||
- id: emoji-sc | ||
available: n | ||
- id: auto-url-linking | ||
available: y | ||
- id: disabling-auto-url | ||
available: y | ||
- id: html | ||
available: p | ||
notes: "Some HTML is [sanitized](https://publish.obsidian.md/help/Advanced+topics/HTML+sanitization) for security purposes." | ||
see-also: | ||
- name: Format your notes | ||
link: https://publish.obsidian.md/help/How+to/Format+your+notes | ||
--- | ||
|
||
[Obsidian](https://obsidian.md/) is a relatively new entrant in the increasingly crowded Markdown knowledge base and note-taking market. Obsidian's excellent Markdown support and its simple, straightforward design makes it a standout application in the category. | ||
|
||
<img src="/assets/images/tools/obsidian.png" class="img-fluid" style="width: 100%;" alt="Obsidian Markdown application"> | ||
|
||
Obsidian sports virtually all of the standard fare common to the other applications in this category, but it ups the ante by including a number of other features for power users. There's a visually-striking graph view that's a kind of "mind map" of all your files stored in Obsidian, a "Markdown format importer" that can find and replace certain Markdown syntax elements in your files, and support for [math](https://publish.obsidian.md/help/How+to/Format+your+notes) and [diagram](https://publish.obsidian.md/help/How+to/Format+your+notes) syntax. That really just scratches the surface of Obsidian's capabilities. Obsidian is extensible, and there are dozens of free community plugins available within the application. | ||
|
||
Two other features are worth mentioning. Obsidian provides a simple way to publish notes to the internet, and it stores all of your files in plaintext Markdown files containing only the text you enter. | ||
|
||
{% include tool-syntax-table.html %} | ||
|
||
### Support for Additional Syntax Elements | ||
|
||
As an added bonus, Obsidian provides support for several obscure elements. | ||
|
||
<table class="table table-bordered" style="font-size: 14px"> | ||
<thead class="thead-light"> | ||
<tr> | ||
<th>Element</th> | ||
<th>Markdown</th> | ||
<th>Rendered Output</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Highlight</td> | ||
<td><code>==word or phrase==</code></td> | ||
<td><mark>word or phrase</mark></td> | ||
</tr> | ||
</tbody> | ||
</table> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters