Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mgmeyers/obsidian-embedded-note-titles
https://github.com/mgmeyers/obsidian-embedded-note-titles
obsidian obsidian-md obsidian-plugin
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mgmeyers/obsidian-embedded-note-titles
- Owner: mgmeyers
- License: gpl-3.0
- Archived: true
- Created: 2020-12-24T19:04:24.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-15T16:55:57.000Z (over 2 years ago)
- Last Synced: 2024-08-02T13:35:18.415Z (5 months ago)
- Topics: obsidian, obsidian-md, obsidian-plugin
- Language: TypeScript
- Homepage:
- Size: 2.06 MB
- Stars: 58
- Watchers: 5
- Forks: 5
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - mgmeyers/obsidian-embedded-note-titles - (TypeScript)
README
## Obsidian Embedded Note Titles Plugin
This plugin embeds the note title at the top of each note in both preview and edit mode. This plugin does not modify notes, and the title is not a part of the document itself.
**Features:**
- The embedded titles can be styled using the Style Settings plugin
- Titles can be hidden or overridden by a file's frontmatter
- Titles can be hidden if when a level 1 heading is present### Note
In general, this plugin attempts to size the titles to align with the note content. Some themes may have styling that conflicts with these calculations. If you notice misalignment between the title and the note, the titles can be styled via css like so:
```css
h1.embedded-note-title {
/* ...reading mode styles... */
}h1.cm-line.embedded-note-title {
/* ... live preview / edit mode styles ... */
}
```You may also need to account for readable line length:
```css
.is-readable-line-width h1.embedded-note-title {
/* ...reading mode styles... */
}.is-readable-line-width h1.cm-line.embedded-note-title {
/* ...reading mode styles... */
}
```