, title, link insertion and other common editing functions, is a very good thing.Recently in using Markdown to write things, so send a markdown common grammar bar.
This is the need to knock it out : (there is later)#**markdowm Practice Using * *#[What is MARKDOWM] (http://BAIKE.BAIDU.COM/LINK?URL=L4GPTBDTZJVLQ1E1XYLWHZ48N2_ERVSZQRJVGQDDRO03NAMTJV0GEE9FKLSM1YXGCTSQLW4FHQXWP-E4QL_MHK)[Informed discussion] (http://www.zhihu.com/question/20409634)[R
Handbook of the use of small-book Craftsmen's GrammarSmall book maker Grammar Markdown Help
This is the H1 level title.
This is H2 level two heading.
This is H3 level three heading.
This is H4 level four heading.
This is H5 level five heading.
This is H6 level six heading.
Video
Audio
Attachment
Abbre
Handbook of the use of small-book Craftsmen's GrammarSmall book maker Grammar Markdown Help
This is the H1 level title.
This is H2 level two heading.
This is H3 level three heading.
This is H4 level four heading.
This is H5 level five heading.
This is H6 level six heading.
Video
Audio
Attac
OC Basic Grammar has all been learned, but this knowledge is only the most basic, there are many advanced knowledge, this may need to learn slowly later to understand. Next I will summarize the previous OC basic syntax, if you find that there is something wrong, please correct me, younger brother is a freshman, more please OC veteran to spray ~ ~The questions are as follows:1. The array containing the following three strings @ "1hello", @ "2word", @ "
11 Basic Grammar of MarkdownNow is the note I made when I was studying markdown. It is no problem to learn the basic use of these markdown.1. Caption settings (make the font larger, and Word's title means the same)There are two ways to set a title in Markdown:The first one: by adding "=" and "-" below the text, they represent a primary heading and a level two heading.The second type: Add "#" to the beginning of the text, and the number of "#" headings
A little guilty, the months of neglect, but also wasted a lot of time.Next I read some notes about the core grammar, probably not all may be wrong, I hope you can point out.One, dot syntaxThe essence of point syntax is invocation.For example:Person *p = [person new];Assign valueP.age = 10; equivalent to [P setage:10]; Call setterTake valueint a = p.age;//is equivalent to [P age]; Call getterIi. Scope of member variablesDirect access to @public anywher
Just ended the Google IO Conference really dry, as programmers most let me just interested in or Google announced that Kotlin become the first development language AndroidThis is indeed a more shocking news, as the mobile development of me, is bound to grasp the development of the language in time.Personally read Kotlin's Chinese document, feel its grammar and swift very similar (in the end who copied who ~), so if you have the effect of swift develop
definition of a ... All right. I'm not sure what to say. There is the relevant information is said in this way. He is not without type. Nor is it a var type. But when compiling, it will determine what type he is. That is, when the code above compiles, it is determined that he is of type int. As in the picture belowSee the above picture inside the hint is not. He is a local variable int local. It is clear that he is an int type. In the process of development, I have not encountered the need to u
chapter II Basic Grammar and recursion supplementDate: April 24, 2017 10:39:18Chapters: 02 Chapters _01, 02 chapters _02 FestivalVideo Length: 49:21 + 15:45content: Identifiers, keywords and data typesExperience: Composed of letters, underscores, $, numbers, should be preceded by letters, underscores $, and should avoid Java reserved charactersA variable is a small area in memory that uses the variable name to access the areaMemory management during e
the basic grammar of Python31.if ... else SELECT statementSex=input ("Inputyour Name:")If sex= "Girl": or if sex= ("Girl"): parentheses are also OKPrint ("I Like Girl")elifsex= "Boy":Print ("I Like a Boy")Esle:Print ("You aren't a person")Attention:1.elif is the else if meaning cannot be written else if not recognized2. Use {} in the C language scope, in python with indentation to represent the scope , you must indent, arbitrarily indent a few spaces,
The first learning is the basic grammar of C language, mainly divided into keywords, identifiers, annotations, data, constants, variables.First, the key word1 keyword refers to the system default in the C language characters with special meaning2 keywords are all lowercase letters, a total of 32 keywords (main function "main" int, return), as follows:AutoDouble int struct Break Else Long Switch Case enumRegister typedefChar extern returnUn
Java12-java Grammar Basics (11) InheritanceFirst, inheritanceLearning Requirements:1. Understanding the concept and role of inheritance2. Mastering the realization mechanism of inheritance3. Understanding overrides and overlays in succession4. Mastering the use of super keywordReview:1, analysis of the objective world, abstract into a class, and the use of Java language implementation.2, the use of private packaging.3. Use the This keyword to refer to
--------------------------------------------------------------------------------------------------------------- -----------Description: Character sequences, formed from ASCII letters, is reserved for use as keywords and cannot is used a s identifiers (§3.8).------------------------------------------------------------------------------------------- -------------------------------Grammar: Keyword:one of abstract continue for new switch
-------------------------------------------------------------------------------Description: White space is defined as the ASCII space character, horizontal tab character, formfeed character, and line terminator characters (§3.4).--------------- ---------------------------------------------------------------Grammar: whitespace:the ASCII SP character, also known as " Space "The ASCII HT character, also known as" horizontal tab "The ASCII FF character, a
This is my note on the third edition of Oulich, the Java Programmer's Interview cookbook. This is the basic grammar section.ClassLoader primarily serves the request of a class, when a class is required by the JVM, it requires the class according to the name, and then returns the class object of ClassLoader by ClassLoader.In Java, characters exist in only one form, which is Unicode. Everything inside the JVM is represented by Unicode, and the output to
The basic grammar and principles of C language are initially:/* ******************************************* *Data typeDescription Data sizeChar 1Short 2int 4Float 4Double 8Constructed typeStorage typeThe location that is stored in memory(Heap, stack (auto), static region, code snippet)FunctionOperation of the code (what to Do)+-*/% | | is an operatorControl statementsSelect or cycleFunction* ******************************************** */IdentifierVa
change. HTML is a published format, and Markdown is a form of writing. In this way, the markdown format syntax covers only the range that plain text can cover.
Iii. Introduction to Grammar
(i) block elements
Paragraphs and line wrapping
A markdown paragraph is made up of one or more contiguous lines of text, with more than one blank line before and after it (the definition of a blank line appears to be empty and is treated as a blank line). For e
First, OBJECTIVE-C (hereinafter referred to as OC) Introduction
Objective-c is based on C, the addition of object-oriented features to expand the general-purpose high-level programming language, but also writing OBJC, obj-c and less used Objective C. Objective-c is primarily used for Mac OS X and IOS systems and their associated APIs such as Cocoa, Cocoa Touch. Objective-c originally originated from the NeXTSTEP system, which was then inherited by OS X and IOS. Currentl
introduces the function template first, and the next article introduces the class template.function templatesWe can write a function template for the above series of Max functions.Templatet Max (t A, T b) { return a b:a;}We do not elaborate on the grammar, first look at the general appearance, in fact, the function template looks and the normal function is very similar.Well, we've defined a function template, so how do we generate the function c
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.