-
Notifications
You must be signed in to change notification settings - Fork 295
Markdown Syntax
The content files for the Telerik UI for ASP.NET AJAX documentation are written in Markdown. Exact syntax rules and examples for how to use Markdown are available here—daringfireball.net/projects/markdown/.
Most of the custom elements are based on the blockquote syntax in Markdown. Therefore, the >[name]
pattern is used for them.
Important: Always use camelCase for the
[name]
in the custom syntax.
Differently defined are the code snippets, which are generated using ````[language]
. You can examine the Code Snippet section.
Alerts are used to notify the reader for something important. There are 5 types of different alerts:
- Tip
- Important
- Caution
- Warning
- Note
The type of the alert corresponds to its name. For example, >tip
will create an alert of type Tip, >warning
will be of type Warning.
>caution This is an alert of type caution,
here the first paragraph stops.
>
End here begins the second one.
>important This is the first paragraph.
>
* list item 1
* list item 2
>
And a second paragraph.
Captions are used as titles for tables, images, single code snippets and tabbed code snippets. To create them you can use >caption
and write a line of text.
Note: Captions support only one line of text.
Important: By definition, they should be put above the element that they describe.
>caption This should the description of an image, table or code example.
To generate a code snippet you can use four backtick quotes followed by the language used in the snippet.
Note: You indentation is disregarded, so it will be rendered as placed.
````JavaScript
var oWin = #find("<%= RadWindow1.ClientId %>")
````
To indicated that certain code snippets should be in a tab-strip, you should list them as plain code snippets, without new lines between them. The new line is a delimiter that indicates which is the last code snippet to be added. In Example 5, you can see how to generate code snippets in a tab-strip. And in Example 6, you can see how the last code snippet will not be added into the tab-strip, because of the new line.
````ASP.NET
<telerik:RadButton runat="server" ID="RadButton1" OnClientClicking="OnClientClicking">
</telerik:RadButton>
````
````JavaScript
function OnClientClicking(sender,args){
// some code to add ...
}
````
````ASP.NET
<telerik:RadButton runat="server" ID="RadButton1" OnClientClicking="OnClientClicking">
</telerik:RadButton>
````
````JavaScript
function OnClientClicking(sender, args){
// some code to add ...
}
````
````CSS
.RadButton{
/* css rules */
}
````
- Home
- Getting Started
- Deploying Documentation on IIS
- Git and GitHub Workflow
- Handling Redirects (link to the docs-seed wiki)
- Markdown Syntax (link to the docs-seed wiki)
- Markdown Nesting (link to the docs-seed wiki)
- Using Templates (link to the docs-seed wiki)
- Using Git and Git Bash
- Faster Jekyll Build via generate_exclude.rb Script
- Using Helper Tools
- Troubleshooting
- Use VS Diff tool with Git and SourceTree