---
layout: page
permalink: /external/contribute/markdown/
shortcut: contribute:markdown
redirect_from:
- /cards/contribute:markdown
- /internal/cards/contribute:markdown
---
# Markdown
Markdown is a lightweight markup language with plain text formatting syntax which became very popular in past decade and which nowadays serves as a standard in various digital communication channels.
## Main features of Markdown
* It has very simple syntax easy to learn.
* It is already widely used in scientific community.
* It separates content from visual presentation so it allows you to focus on writing, not formatting.
* It is a non-proprietary file format.
* It is powerful - allows to format text with very little effort.
* It is portable - since it is actually plain text, it can be opened by literally all text editors.
* It is machine readable - as simple text, markdown documents can be tracked and version using a versioning system (Git, SVN)
* small file size
* easy to convert to other formats - existing editors and command line tools (e.g. [pandoc](https://pandoc.org/) allows for easy conversion between Markdown and other widely used formats like HTML, PDF, docx, LaTeX, etc.
## Quick reference
- The following symbol behind the file name means that your changes/writing is not saved.
press crt+s to save your procedure
- To preview your writing click on:
- **tips to write in markdown:**
**insert pictures:**
**create a table**
## Syntax
Markdown | Rendered Output |
---|---|
# Header 1
|
Header 1Header 2Header 3Header 4 |
To **bold** text, add **two asterisks** or __underscores__ before and after a word or phrase.
To make text **italic** text, add *one asterisks* or _underscores_.
|
To make phrase bold text, add two asterisks or underscores before and after a word or phrase. To make text italic, add one asterisks or underscores. |
Use numbers for ordered lists:
|
|
For unordered lists
* First item
|
|
Include links referring to a web [page](https://www.markdownguide.org/)
|
Include links referring to a web page |
Include local pictures: 
|
Include local pictures: ![]() |
Include code blocks!
```
myAwesomeFunction <- function(x) x+1;
# Apply function
myAwesomeFunction(2);
```
|
Include code blocks!
myAwesomeFunction <- function(x) x+1;
# Apply function
myAwesomeFunction(2);
|
Markdown | Rendered Output |
---|---|
# DocTitle
### Attendees:
### Location:
## Objective / Agenda
## Meeting Notes
* first note
* second note
* ...
## Actions
- [ ] Josh, Alice and Cindy will do this.
- [x] Bob stops doing that.
- [ ] Will and Tom will take care of those
|
|