Markdown is a lightweight markup language that provides a simple syntax for formatting text. It is widely used for writing documentation, README files, and online content. This guide explains the current Markdown features supported in NoCodeDesigner.
Headers in Markdown allow you to define section titles and headings. They are created using the #
symbol, with the number of #
symbols corresponding to the header level.
For example:
# Header 1
## Header 2
### Header 3
#### Header 4
#
at the beginning of a line, followed by a space and the header text.#
(largest) to ######
(smallest).Example:
# Main Header
## Subheader
### Sub-subheader
Markdown provides various options for styling text, such as bold, italic, and strikethrough. These styles help to emphasize important parts of the text.
**text**
or double underscores __text__
to make text bold.**This is bold text**
*text*
or a single underscore _text_
for italics.*This is italic text*
~~text~~
for strikethrough text.~~This text is crossed out~~
Markdown also allows the creation of hyperlinks, which link to external or internal content. Use square brackets []
for the link text and parentheses ()
for the URL.
Syntax:
[Link Text](https://example.com)
Example:
For more information, visit the [Markdown Guide](https://www.markdownguide.org).
Images can be embedded in Markdown similarly to hyperlinks, with an exclamation mark !
at the beginning, followed by the alt text in square brackets []
and the image
URL in parentheses ()
.
Syntax:
![Alt Text](https://example.com/image.jpg)
Example:
![Markdown Logo](https://markdown-here.com/img/icon256.png)
We have implemented some of the possible special characters.
(c) renders a © copyright symbol
(r) renders a ® registered brand symbol
(tm) renders a ™ trademark symbol
Example:
(c) 2024 your name
(r) Your brand
Your product(tm)
Here is a combined example showing the use of headers, styling, hyperlinks, and images:
# Welcome to Markdown
**Markdown** is a lightweight markup language that can be used to *format text*, ~~cross out text~~, add [links](https://www.example.com), and display images!
![Markdown Logo](https://markdown-here.com/img/icon256.png)
This page provides a basic overview of the currently supported Markdown features. For more complex formatting or additional options, future updates may include extended Markdown features. If you want to use additional feature like lists, tables, codeblocks or the like, then please start a feature request. We really want to implement everything whats needed by most of our users.