Welcome!
-
-
-
-
-
- LMS Home
- Core Concepts
- Companies and Departments
- Courses
- Course Status and Visibility
- Sections
- Video Activities
- Reading Activities
- Document Activities
- Enrolling People in a Course
- Bulk Enroll With CSV
- Roles in a Course
- How Progress Is Tracked
- Course Reports
- Knowledge Base Overview
- Libraries and Folders
- Uploading Content Items
- Library Visibility
- AI Agent per Library
- My Courses
- Platform People
-
-
-
- Project Structure Template
- Table of Contents (TOC)
- Content Folder
- Introduction to Markdown
- Markdown Basics
- Markdown Lists
- Markdown Links
- Markdown Images
- Markdown Code
- Markdown Tables
- Markdown Equations
- Markdown Videos
- Markdown Embedded HTML
- VS Code Snippets
- Introduction to Styles
- Custom Theme
- Framed Narrations
- Markdown Configuration
- Editor Setup
-
Links
Links are essential to any document or presentation, allowing you to reference other sources and provide additional information to your audience. In Markdown, you can easily create links to other websites, files, or even other sections of your presentation.
Inline Links
To create an inline link in Markdown, use the following syntax:
[link name](link)
For example:
[Lupo](https://lupo.ai/)
Reference-style Links
In addition to creating inline links, you can create reference-style links in Markdown. Reference-style links allow you to separate the link text from the URL, making your Markdown more organized and easier to read.
To create a reference-style link, use the following syntax:
[link name][id]
[id]: link "mouseover text"
For example:
[lupo](https://lupo.ai/)
[lupo]: https://lupo.ai/ "Go to Lupo"
The link definition includes the link URL and optional title or tooltip, which can be placed anywhere after a blank line but is generally near the bottom. Definition identifiers, such as [id], may consist of letters, numbers, spaces, and punctuation and are not case-sensitive.
Relative URLs
You can also use relative URLs in your Markdown links. Relative URLs are URLs that are relative to the current document's location. For example, if you have a file called image.png in the same directory as your Markdown document, you can create a link to it like this:
[Image](image.png)
Example with References
Here's an example of using reference-style links with references:
[hurricane]: https://en.wikipedia.org/wiki/Hurricane_Erika "Hurricane Erika"
[Hurricane][hurricane] Erika was the strongest and longest-lasting tropical cyclone in the 1997 Atlantic [hurricane] season.
Hurricane Erika was the strongest and longest-lasting tropical cyclone in the 1997 Atlantic hurricane season.