Markdown Editor practice

How typesetting chapter

Headline

subtitle

A title

Subheadings

Three title

Four title


How to insert a list:

  • Personal programming, write a command-line program
    • Github account registration, the establishment of the warehouse project
      • Add and edit ReadMe.md, brief project description, function, use cases, downloads, documentation, etc.
      • Establish doc directory for documentation
      • The establishment of various scripts scripts directory store
      • Build config directory to store configuration information publicly
      • Establishing src directory contains the source code
      • Build test scripts directory to store test data extremely
      • PSP established form, the following estimates several time-consuming process of estimate
    • Needs analysis program and submit a document to github
      • basic needs
      • Expansion needs
      • High demand
    • Functional design and submit documentation to github

How to insert a hyperlink:

xinz



SE_FZU Me录: 1 2 3 4 5 6 7 8 9 10 11 12 13


How to refer to someone else's text

Utilitarianism is a huge influence of Western ethics, the principle is "the greatest happiness of the greatest number" to the actual efficacy or benefit acts as judge acted properly or not the standard. This book elaborated on this theory, the introduction points, what is utilitarian, on the last sanctions force utilitarianism, utilitarianism can get what kind of proof, on the relationship between justice and Utilitarianism.

- quote from the " utilitarian "


How to modify the line in the text: delete, bold, italic, color

Professionalism

  • Description: This book focuses on the ability to explain the four real experts must possess: vision capability , the idea of capacity , the ability to discuss , adapt contradictory ability to enrich cases and profound insights warning people to rethink the professional connotation and utility, train and recruit professionals.
  • status:It has been read.
  • NOTE: analysis, design, implementation, improvement

How to insert the code:


/*

** Create or reuse a zero-terminated string, first checking in the

** cache (using the string address as a key). The cache can contain

** only zero-terminated strings, so it is safe to use 'strcmp' to

** check hits.

*/

TString *luaS_new (lua_State *L, const char *str) {

  unsigned int i = point2uint(str) % STRCACHE_N;  /* hash */

  int j;

  TString **p = G(L)->strcache[i];

  for (j = 0; j < STRCACHE_M; j++) {

    if (strcmp(str, getstr(p[j])) == 0)  /* hit? */

      return p[j];  /* that is it */

  }

  /* normal route */

  for (j = STRCACHE_M - 1; j > 0; j--)

    p[j] = p[j - 1];  /* move out last element */

  /* new element is first in the list */

  p[0] = luaS_newlstr(L, str, strlen(str));

  return p[0];

}

How to insert a formula

Inline formula \ (\ sqrt {}. 1-3x + (. 1 + X) ^ 2 \) ,
the line equation:
\ [\ sqrt {}. 1-3x + (. 1 + X) ^ 2 \]


How to insert a picture


How to add a paragraph

MarkDown What are the benefits?

MarkDown benefits of pure text layout, text itself there is a strong structuring effect, even if only in writing MarkDown in Notepad without any rendering, you can see the hierarchy structure. For example, QQ, micro letter, you send a text MarkDown, others can see a quasi-structural level to which this is the effect of the structure of the text itself. Of course, if you need a bit of advanced rendering effects, just to find support at MarkDown rendering site rendering, then export to HTML or PDF are good. Blog categories, such as blog support MarkDown Park have been rendered. Temporarily rendering tools, like this site: stackeditor 're ready to paste the text you edited in Notepad locally, on the right you can see the rendering, you can choose to export to plain text, HTML, or PDF. This site Exporting PDF to register the account, but there are ways to go around, for example, you export styled HTML, and then open a Chrome browser, right-print, save PDF, will be able to achieve the same effect.


Guess you like

Origin www.cnblogs.com/SunMaolin/p/11521930.html