Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xaviergoby/0d208954a38d3ad915dfa2d07bbc3b59 to your computer and use it in GitHub Desktop.
Save xaviergoby/0d208954a38d3ad915dfa2d07bbc3b59 to your computer and use it in GitHub Desktop.
Just some code snippets for markdown
# Misc
## Emphasis
**This is bold text**
__This is bold text__
*This is italic text*
_This is italic text_
~~Strikethrough~~
# (**Method 1**) GitHub Markdown Linking to Sections (of text) in the Same Markdown file
## Contents
1. [General Information](#gen_info)
2. [Abstract](#abstract)
3. [Working Principle](#working_principle)
## General Information <a name="gen_info"></a>
## Abstract <a name="abstract"></a>
## Working Principle <a name="working_principle"></a>
# (**Method 2**) GitHub Markdown Linking to Sections (of text) in the Same Markdown file
## Title
### Place 1
Hello, this is some text to fill in this, [here](#place-2), is a link to the second place.
### Place 2
Place one has the fun times of linking here, but I can also link back [here](#place-1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment