ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Environment
  • Overview
  • How to?
  • Convert Markdown
  • Markdown syntax
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Overview
Markdown is a lightweight markup language that allows you to apply formatting to text. Because of its simplicity and practicality, Markdown is easy to read, learn and remember.
All WINDEV and WINDEV Mobile controls support Markdown. Simply enable the option and enter text in Markdown format.
How to?

Convert Markdown

WLanguage provides several standard functions to convert Markdown content to other formats:
MarkdownToDOCXConverts a Markdown string to a DOCX file.
MarkdownToHTMLConverts a Markwdown string to an HTML buffer (encoded in UTF-8).
MarkdownToPDFConverts a Markdown string (or buffer) to a buffer containing a PDF document.
MarkdownToTextConverts a Markdown string to plain text (without tags).
When editing documents containing Markdown text (meeting minutes, intervention reports, etc.), these functions allow you to:
  • display the content in a website (HTML),
  • send the document by email (PDF),
  • etc.
Markdown syntax
Below is a list of Markdown syntax elements:
Headings
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4 
##### Heading level 5 
###### Heading level 6

Heading level 1

Heading level 2

Heading level 3

Heading level 4

Heading level 5
Heading level 6
Bold/Italic
*Italicized* text

**Bold** text

***Bold and italic*** text
Italicized text

Bold text

Bold and italic text
Strikethrough
~~Strikethrough~~ text
Strikethrough text
Line break
**Bold text** CR CR
*Italicized text*
CR represents a carriage return
Bold text

Italicized text
**Bold text** SPC SPC CR
*Italicized text*
SPC represents the space character
CR represents a carriage return
Bold text
Italicized text
Change paragraph
**Bold text**
Empty line
*Italicized text*
Bold text

Italicized text
Blockquote
> Blockquote

> Blockquote
>
> 2nd line of the blockquote

> Blockquote level 1
> 
>> Blockquote level 2
> > 
>>> Blockquote level 3
Blockquote
Blockquote
2nd line of the blockquote
Blockquote level 1
Blockquote level 2
Blockquote level 3
Lists
* List 1
* List 2 
* List 3   
    * Sublist 1
    * Sublist 2

1. List 1
2. List 2 
3. List 3   
    1. Sublist 1
    2. Sublist 2
  • List 1
  • List 2
  • List 3
    • Sublist 1
    • Sublist 2
  1. List 1
  2. List 2
  3. List 3
    1. Sublist 1
    2. Sublist 2
Code
```
// Calculation
n = Factorial(6)
```

// Calculation n = Factorial(6)
Separator
a
* * *
b
***
c
- - -
d
---
e
a
b
c
d
e
Links
[WINDEV](https://windev.com/windev/)

[WEBDEV](https://windev.com/webdev "WEBDEV!")

[link]: https://windev.com/windevmobile
[WINDEV Mobile][link]
WINDEV
Images
Remark: URLs handled synchronously
PC SOFT logo:
![alt](logo.gif)

PC SOFT logo with tooltip:
![alt](logo.gif "title")
Special characters
\\
\#
\_
\-
\`
\!
\( \)
\{ \}
\[ \]
\
#
_
-
'
!
( )
{ }
[ ]
Text color
This <span style="color: #26B260">
text is green</span>!
This text is green!
Related Examples:
WD Markdown Complete examples (WINDEV): WD Markdown
[ + ] This example is an advanced Markdown text editor
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/15/2024

Send a report | Local help