-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs sync @ e327115 Feat #879: Note Embedding Syntax (#1281) (#52)
- Loading branch information
1 parent
89af173
commit f4b8741
Showing
3 changed files
with
34 additions
and
3 deletions.
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,29 @@ | ||
# Built-In Note Embedding Types | ||
|
||
When embedding a note, there are a few ways to modify the scope of the content as well as its display style. The following are Foam keywords that are used to describe note embedding. | ||
|
||
Note, this only applies to note embedding, not embedding of attachments or images. | ||
|
||
![Note Embed Types GIF](../../assets/images/note-embed-type-demo.gif) | ||
|
||
## Scope | ||
|
||
- `full` - the entire note in the case of `![[note]]` or the entire section in the case of `![[note#section1]]` | ||
- `content` - everything excluding the title of the section. So the entire note minus the title for `![[note]]`, or the entire section minus the section header for `![[note#section1]]` | ||
|
||
## Style | ||
|
||
- `card` - outlines the embedded note with a border | ||
- `inline` - adds the note continuously as if the text were part of the calling note | ||
|
||
## Default Setting | ||
|
||
Foam expresses note display type as `<scope>-<style>`. | ||
|
||
By default, Foam configures note embedding to be `full-card`. That is, whenever the standard embedding syntax is used, `![[note]]`, the note will have `full` scope and `card` style display. This setting is stored under `foam.preview.embedNoteStyle` and can be modified. | ||
|
||
## Explicit Modifiers | ||
|
||
Prepend the wikilink with one of the scope or style keywords, or a combination of the two to explicitly modify a note embedding if you would like to override the default setting. | ||
|
||
For example, given your `foam.embedNoteStyle` is set to `content-card`, embedding a note with standard syntax `![[note-a]]` would show a bordered note without its title. Say, for a specific `note-b` you would like to display the title. You can simply use one of the above keywords to override your default setting like so: `full![[note-b]]`. In this case, `full` overrides the default `content` scope and because a style is not specified, it falls back to the default style setting, `card`. If you would like it to be inline, override that as well: `full-inline![[note-b]]`. |
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
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