Spaces:
Sleeping
Sleeping
File size: 2,112 Bytes
c63ff03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
---
aliases:
- How to/Embed files
- Linking notes and files/Embedding files
---
Learn how you can embed other notes and media into your notes. By embedding files in your notes, you can reuse content across your vault.
To embed a file in your vault, add an exclamation mark (`!`) in front of an [[Internal links|Internal link]]. You can embed files in any of the [[Accepted file formats]].
## Embed a note in another note
To embed a note:
```md
![[Internal links]]
```
You can also embed links to [[Internal links#Link to a heading in a note|headings]] and [[Internal links#Link to a block in a note|blocks]].
```md
![[Internal links#^b15695]]
```
The text below is an example of an embedded block:
![[Internal links#^b15695]]
## Embed an image in a note
To embed an image:
```md
![[Engelbart.jpg]]
```
![[Engelbart.jpg#outline]]
You can change the image dimensions, by adding `|640x480` to the link destination, where 640 is the width and 480 is the height.
```md
![[Engelbart.jpg|100x145]]
```
If you only specify the width, the image scales according to its original aspect ratio. For example, `![[Engelbart.jpg|100]]`.
![[Engelbart.jpg#outline|100]]
## Embed an audio file in a note
To embed an audio file:
```md
![[Excerpt from Mother of All Demos (1968).ogg]]
```
![[Excerpt from Mother of All Demos (1968).ogg]]
## Embed a PDF in a note
To embed a PDF:
```md
![[Document.pdf]]
```
You can also open a specific page in the PDF, by adding `#page=N` to the link destination, where `N` is the number of the page:
```md
![[Document.pdf#page=3]]
```
You can also specify the height in pixels for the embedded PDF viewer, by adding `#height=[number]` to the link. For example:
```md
![[Document.pdf#height=400]]
```
## Embed a list in a note
To embed a list from a different note, first add a [[Internal links#Link to a block in a note|block identifier]] to your list:
```md
- list item 1
- list item 2
^my-list-id
```
Then link to the list using the block identifier:
```md
![[My note#^my-list-id]]
```
## Embed search results
![[Search#Embed search results in a note]]
|