Markdown
The Markdown format is a lightweight markup language that allows easy reading and writing of formatted text.
Markdown is widely used for blogging, in CMS, documentation pages, and readme files.
Lingohub supports Markdown files for translation, preserving the format's structure and special elements.
Format
- The file extension is
.md
- Lingohub will divide the content of the file into segments per paragraph
- Headers, Lists, Code, and Indent Blocks will be parsed as one segment
Examples
---
title: Sample Document
---
# Introduction
This is a paragraph.
It spans multiple lines.
- List item 1
- List item 2
with multiple lines
<!-- Translator note: Use appropriate terminology -->
## Section 1
Code example:
```python
print("Hello, world!")
Updated 2 days ago