Links

Links in Markdown

Markdown allows you to create links (also called hyperlinks) between documents/files. This is very useful when you want to reference or jump between related documentation, pages, or resources.

How Markdown Link Syntax Works

The basic syntax for creating a link in Markdown is:

[Link Text](target-path)

Understanding File Paths for Links

Markdown links work very much like file paths you’d use in your file system. The path in your link tells Markdown where to "find" the document you want to link to.

In Flow Publish links do not need to have the ".md". If that is omitted the linking system is able to figure it out. Ideally links should be very tolerant to human users.

Our vision is to make linking systems which don't require the human user to distinguish between using the word "remove" or "delete" or "add" or "create" since they mean the same thing. See semantic linking.


Examples

Markdown Result
[Home](README.md) Links to README.md
[Guide](docs/guide.md) Links to docs/guide.md file
[Up one level](../readme.md) Links to parent dir's readme.md
[Google](https://google.com) Links to the Google website

Key Takeaways