notes for markdown 1. Introduction


This note is a follow-up of Notes for Blog Writing by Hexo and NexT – basic syntax. These notes will form a serie of notes about Hexo, NexT and Markdown.

First method

  • Syntax
    1
    2
    3
    4
    5
    6
    7
    8
    9
    * [1. Introduction](#1)
    * [1.1 History](#1.1)

    <h1 id="1">1. Introduction</h1> //Notes: h1 means # and h2 means ##
    Brief introduction
    <h2 id="1.1">1.1 History</h2>
    History incidents

    Notes: [name](# + anchor) ; <h2 id="anchor">position</h2>
  • effets:

1. Introduction

Brief introduction

1.1 History

History incidents

Second method

  • syntax:
    1
    2
    3
    <span id="jump">Hello World</span>

    [XXXX](#jump)
  • effects:
    Hello World

XXXX