Here is a paragraph with bold text. This is some bold text. Here is a paragraph with bold text. This is also some bold text.
Here is another one with italic text. This is some italic text. Here is another one with italic text. This is some italic text.
Here is another one with struckout text. This is some struckout text.
Autolink: http://example.com
Link: Example
Reference style link.
Title with link
This
is
code
fence
Inline code span in a
paragraph.
This is a code block:
/**
* Sorts the specified array into ascending numerical order.
*
* <p>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);
}
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:
Link: Example
This is inline html. And this is an html block.
Column 1 | Column 2 |
---|---|
Row 1 Cell 1 | Row 1 Cell 2 |
Row 2 Cell 1 | Row 2 Cell 2 |
Unordered list:
- asterisk 1
- asterisk 2
- asterisk 3
Ordered list:
- First
- Second
- Third
Mixed:
- First
- Second:
- Fee
- Fie
- Foe
- Third
Tables:
Header 1 | Header 2 |
---|---|
Data 1 | Data 2 |