Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgmeyers/obsidian-easy-bake
Compile many Obsidian notes down to one.
https://github.com/mgmeyers/obsidian-easy-bake
obsidian-md obsidian-plugin
Last synced: 17 days ago
JSON representation
Compile many Obsidian notes down to one.
- Host: GitHub
- URL: https://github.com/mgmeyers/obsidian-easy-bake
- Owner: mgmeyers
- License: gpl-3.0
- Created: 2023-08-16T19:30:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-26T16:42:38.000Z (7 months ago)
- Last Synced: 2024-12-17T22:08:23.654Z (24 days ago)
- Topics: obsidian-md, obsidian-plugin
- Language: TypeScript
- Homepage:
- Size: 1.11 MB
- Stars: 73
- Watchers: 3
- Forks: 9
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
Easy Bake
Compile your Obsidian notes into larger documents. This plugin is focused on simplicity. For more complex compilation scenarios, try kevboh's longform plugin.
---
Activate the plugin using the `Bake current file` command in [Obsidian's command palette](https://help.obsidian.md/Plugins/Command+palette).
Links and embeds that exist on their own line will be copied into the compiled document. Inline links will be replaced with the link's text. This process is recursive, meaning links in linked files will also be copied into the final document.
For example,
```markdown
## Section One[[File one]]
[[File two]]## Section Three
This is an [[File three|inline link]].
[[File four]]
```will be compiled to:
```markdown
## Section OneContent of file one
Content of file two## Section Three
This is an inline link.
Content of file four
```