The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: note embeds and update git hint

+12
+8
docs/features/wikilinks.md
··· 14 14 - `[[Path to file | Here's the title override]]`: produces a link to `Path to file.md` with the text `Here's the title override` 15 15 - `[[Path to file#Anchor]]`: produces a link to the anchor `Anchor` in the file `Path to file.md` 16 16 - `[[Path to file#^block-ref]]`: produces a link to the specific block `block-ref` in the file `Path to file.md` 17 + 18 + ### Embeds 19 + 20 + - `![[Path to image]]`: embeds an image into the page 21 + - `![[Path to image|100x145]]`: embeds an image into the page with dimensions 100px by 145px 22 + - `![[Path to file]]`: transclude an entire page 23 + - `![[Path to file#Anchor]]`: transclude everything under the header `Anchor` 24 + - `![[Path to file#^b15695]]`: transclude block with ID `^b15695`
+4
docs/setting up your GitHub repository.md
··· 33 33 ```bash 34 34 npx quartz sync 35 35 ``` 36 + 37 + > [!hint] 38 + > If `npx quartz sync` fails with `fatal: --[no-]autostash option is only valid with --rebase`, you 39 + > may have an outdated version of `git`. Updating `git` should fix this issue.