Markdown Syntax document(Markdown構文ドキュメント)

2457 ワード

  • コンポーネントドキュメントに基づいて開発
  • srcにコンポーネント名対応ディレクトリを新規作成し、大文字で始まる
  • jsファイル1つ、cssファイル1つ、既存のコンポーネント
  • を参照できます.
  • index.jsファイルにはrequire対応jsが必要、index.cssにはrequire対応css
  • が必要である.
  • は、dev.jsにコンポーネント対応js cssを導入することができ、npm run devは、開発時にコンポーネント対応効果
  • を表示する.

    Text


    Here is a paragraph with bold text. This is some bold text. Here is aparagraph with bold text. This is also some bold text.
    Here is another one with italic text. This is some italic text. Here isanother one with italic text. This is some italic text.
    Here is another one with struckout text. This is some struckout text.

    Links


    Autolink: http://example.com
    Link: Example
    Reference style link .

    Images


    Image:

    Headers


    First level title


    Second level title


    Third level title


    Fourth level title
    Fifth level title
    Sixth level title

    Title with link


    Title with


    Code

    This
      is
        code
          fence

    Inline code span in a paragraph.
    This is a code block:
    /**
     * Sorts the specified array into ascending numerical order.
     *
     * 

    Implementation note: The sorting algorithm is a Dual-Pivot Quicksort * by Vladimir Yaroslavskiy, Jon Bentley, and Joshua Bloch. This algorithm * offers O(n log(n)) performance on many data sets that cause other * quicksorts to degrade to quadratic performance, and is typically * faster than traditional (one-pivot) Quicksort implementations. * * @param a the array to be sorted */ public static void sort(byte[] a) { DualPivotQuicksort.sort(a); }


    Quotes


    This is the first level of quoting.
    This is nested blockquote.
    Back to the first level.
    A list within a blockquote:
  • asterisk 1
  • asterisk 2
  • asterisk 3

  • Formatting within a blockquote:

    header


    Link: Example

    Html


    This is inline html