Obsidian Integration Guide

By Your Name

Obsidian Integration Guide

This post demonstrates how to use Obsidian with your Astro blog for seamless content management.

Features Supported

Image References

You can use Obsidian-style image references in your markdown:

![[blog-placeholder-2.jpg]]

Tables

Markdown tables are fully supported:

FeatureStatusNotes
ImagesSupports ![[image.png]] syntax
TagsArray format in frontmatter
FootnotesUsing 1 syntax
TablesGitHub Flavored Markdown

Footnotes

You can use footnotes like this1.

Code Blocks

// Code highlighting is supported
function greet(name) {
  return `Hello, ${name}!`;
}

Workflow Tips

  1. Create posts in Obsidian - Write your content using Obsidian’s powerful editor
  2. Use tags - Add tags in the frontmatter for categorization
  3. Link images - Use ![[image.png]] syntax for easy image management
  4. Export to blog - Copy your markdown to the blog’s content folder

Conclusion

This setup provides a seamless workflow between Obsidian and your Astro blog, maintaining compatibility with Obsidian’s markdown features while leveraging Astro’s performance and SEO benefits.

Footnotes

  1. This is a footnote example. 2