All Projects → kerolloz → markdown

kerolloz / markdown

Licence: other
A reference (guide) on how to write good GitHub markdown for READMEs or any .md file!

Projects that are alternatives of or similar to markdown

Go Compression.github.io
The Hitchhiker's Guide to Compression
Stars: ✭ 106 (+165%)
Mutual labels:  learning, guide
Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+32900%)
Mutual labels:  learning, guide
Golang For Nodejs Developers
Examples of Golang compared to Node.js for learning
Stars: ✭ 2,698 (+6645%)
Mutual labels:  learning, guide
Mentoria
Conectando pessoas que desejam aprender com pessoas que tiram os obstáculos do caminho
Stars: ✭ 1,291 (+3127.5%)
Mutual labels:  learning, learn
Learntla
A TLA+ guide
Stars: ✭ 241 (+502.5%)
Mutual labels:  learning, guide
Lpic 1 Anki Flashcards
Deck of Anki flashcards for the LPIC-1 (Linux System Administrator) exams 101 and 102 of the Linux Professional Institute (LPI).
Stars: ✭ 90 (+125%)
Mutual labels:  learning, learn
Docker Workshop
Docker workshop
Stars: ✭ 174 (+335%)
Mutual labels:  learning, guide
Awesome Python Primer
自学入门 Python 优质中文资源索引,包含 书籍 / 文档 / 视频,适用于 爬虫 / Web / 数据分析 / 机器学习 方向
Stars: ✭ 57 (+42.5%)
Mutual labels:  learning, learn
Java8 Tutorial
Modern Java - A Guide to Java 8
Stars: ✭ 15,276 (+38090%)
Mutual labels:  learning, guide
Waggledance
A learning guide for new programmers
Stars: ✭ 202 (+405%)
Mutual labels:  learning, learn
Core
D Language online tour (https://tour.dlang.org/) and online editor (https://run.dlang.io/)
Stars: ✭ 89 (+122.5%)
Mutual labels:  learning, guide
The-Complete-FAANG-Preparation
This repository contains all the DSA (Data-Structures, Algorithms, 450 DSA by Love Babbar Bhaiya, FAANG Questions), Technical Subjects (OS + DBMS + SQL + CN + OOPs) Theory+Questions, FAANG Interview questions, and Miscellaneous Stuff (Programming MCQs, Puzzles, Aptitude, Reasoning). The Programming languages used for demonstration are C++, Pytho…
Stars: ✭ 8,681 (+21602.5%)
Mutual labels:  readme, learn
Sagefy
🔭 Learn anything, adapted for you. Free.
Stars: ✭ 80 (+100%)
Mutual labels:  learning, learn
Learn Ml Basics
A collection of resources that should help and guide your first steps as you learn ML and DL. I am a beginner as well, and these are the resources I found most useful.
Stars: ✭ 93 (+132.5%)
Mutual labels:  learning, learn
Community Search
A community-curated repository of 🔥 learning resources
Stars: ✭ 72 (+80%)
Mutual labels:  learning, learn
Digital video introduction
A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding).
Stars: ✭ 12,184 (+30360%)
Mutual labels:  learning, guide
Pure Bash Bible
📖 A collection of pure bash alternatives to external processes.
Stars: ✭ 28,109 (+70172.5%)
Mutual labels:  learning, guide
Tiled
📕TILed is medium to share your day to day learning with the world
Stars: ✭ 25 (-37.5%)
Mutual labels:  learning, learn
Tutorial Git
📘 어떻게 깃을 사용하는지 빠르게 알아봅시다. (Quick learn How to use Git.)
Stars: ✭ 188 (+370%)
Mutual labels:  learning, guide
Free Programming Resources
💎 免费的编程资源大全,持续更新!🔥 覆盖各种语言和方向(Java \ Python \ C++ \ JavaScript \ Golang \ 前端 \ 后端等)的学习路线、贴心教程、项目实战、编程书籍、面试合集、实用资源等,对程序员非常有帮助!
Stars: ✭ 225 (+462.5%)
Mutual labels:  learning, guide

GitHub Markdown Reference

Headers

You can do headers as following

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

Lists

Unordered list

- item
- item
- item
  • item
  • item
  • item

Ordered list

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

Nested lists

- item
  - sub-item
    - sub-sub-item
  • item
    • sub-item
      • sub-sub-item

TODOs

- [x] Learn Python
- [ ] Learn Java
  • Learn Python
  • Learn Java

Text Format

*italic*
**bold**
~~strikethrough~~

italic
bold
strikethrough

Images

![Alternative text here](https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Markdown-mark.svg/1280px-Markdown-mark.svg.png)

Alternative text here

Links

checkout my [website](https://kerolloz.github.io/)

checkout my website

Image With link

[![image alt text](https://i.imgur.com/sw215.jpeg)](https://imgur.com/gallery/sw215)

image alt text

Code

this is a small `code` block

this is a small code block


this is a block of code with syntax highlighting 
```python
print("Hello World")
```

this is a block of code with syntax highlighting

print("Hello World")

Block quote

>look how this renders

look how this renders


>block one
>>nested block

block one

nested block

Table

Notice the colon : place

left aligned | centered | right aligned
-------------|:--------:|--------------:
data         | data     | data
left aligned centered right aligned
data data data

Horizontal Line

up

---

down

up


down

New line

You can make a new line by ending a line with two spaces, you don't have to use <br>.


NOTE

In order to be able to see the effects of the tricks used in the following sections please view it from the website.

Viewing it from GitHub's README won't show the effect!


Definitions

Markdown
: Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML.

Markdown : Markdown is a lightweight markup language with plain text formatting syntax. Its design allows it to be converted to many output formats, but the original tool by the same name only supports HTML.

Abbreviations

HTML is easy.

*[HTML]: Hyper Text Markup Language

HTML is easy.

*[HTML]: Hyper Text Markup Language

Footnote

the book [^1] has good exercises

[^1]: you can find the book on Google.

the book 1 has good exercises

Footnotes

  1. you can find the book on Google.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].