Skip to content

Latest commit

 

History

History
77 lines (52 loc) · 1.27 KB

Howto_template.markdown

File metadata and controls

77 lines (52 loc) · 1.27 KB

Title

AUTOR_NAME_1 - AUTOR_MAIL_1 AUTOR_NAME_2 - AUTOR_MAIL_2 ...

Updated MONTH YEAR

Introduction

write here ....

TOPIC_1

write here ...

SUB_TOPIC_1

write here ...

SUB_TOPIC_2

write here ...

TOPIC_2

write here ...

Images

This is a samll size image with text. This is a small size image with text.

This is big image, this are good for screenshots.

This is big image, this are good for screenshots.

TOPIC_3

write here ...

Lists

Dot List

  • item 1
    • item 2 are nest with 2 spaces from left
  • item 3

Number List

  1. item 1 1.1 item 1.1
  2. item 2
  3. item 3

Links

This is the Tntnet homepage http://www.tntnet.org/ . This is the Tntnet homepage too!

2 spaces from left and after a text area!

Code

4 spaces from left

// a simpe C++ programm

#include <iostream>
 
int main() {
    std::cout << "Hello World!/n" << std::endl;
    
    return 0;
}