Cutting Edge Power House In A Small Package
Markdown Styles
H1
H2
H3
H4
H5
bold text
italicized text
Bold italicized italicized text
Ordered List
- First item
- Second item
- Third item
Unordered List
- First item
- Second item
- Third item
Blockquote in Markdown
Dorothy followed her through many of the beautiful rooms in her castle.
More on writting with Markdown
Specialty Examples
Inline Code
inline code block
Links
A Link looks like this
Emojis in Markdown
Emoji icons, That is so funny!
😂😂😂
More on emojis
URL Links
https://www.markdownguide.org fake@example.com
Footnotes
Here's a sentence with a footnote. 1
Tables
Header | Description | Usage |
---|---|---|
Name | Title | Style |
Name | Title | Style |
Name | Title | Style |
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
Images
-
This is the footnote. ↩
Blocks of code have 10 different color theme choices from within the admin panel. There are 6 dark themes and 4 light themes.
try:
from .local import *
except ImportError:
pass
DATABASES = {
"default": {
"ENGINE": os.environ.get("PSQL_ENGINE", "django.db.backends.sqlite3"),
"NAME": os.environ.get("PSQL_DATABASE", os.path.join(BASE_DIR, "db.sqlite3")),
"USER": os.environ.get("PSQL_USER", "user"),
"PASSWORD": os.environ.get("PSQL_PASSWORD", "password"),
"HOST": os.environ.get("PSQL_HOST", "localhost"),
"PORT": os.environ.get("PSQL_PORT", "5432"),
}
}
function bubbleSort(arr){
var len = arr.length;
for (var i = len-1; i>=0; i--){
for(var j = 1; j<=i; j++){
if(arr[j-1]>arr[j]){
var temp = arr[j-1];
arr[j-1] = arr[j];
arr[j] = temp;
}
}
}
return arr;
}
bubbleSort([7,5,2,4,3,9]); //[2, 3, 4, 5, 7, 9]
bubbleSort([9,7,5,4,3,1]); //[1, 3, 4, 5, 7, 9]
bubbleSort([1,2,3,4,5,6]); //[1, 2, 3, 4, 5, 6]
const match = options.languageDetectRe.exec(classes);
if (match) {
const language = getLanguage(match[1]);
if (!language) {
logger.warn(LANGUAGE_NOT_FOUND.replace("{}", match[1]));
logger.warn("Falling back to no-highlight mode for this block.", block);
}
return language ? match[1] : 'no-highlight';
}
return classes
.split(/\s+/)
.find((_class) => shouldNotHighlight(_class) || getLanguage(_class));
}
println!("0011 AND 0101 is {:04b}", 0b0011u32 & 0b0101);
println!("0011 OR 0101 is {:04b}", 0b0011u32 | 0b0101);
println!("0011 XOR 0101 is {:04b}", 0b0011u32 ^ 0b0101);
println!("1 << 5 is {}", 1u32 << 5);
println!("0x80 >> 2 is 0x{:x}", 0x80u32 >> 2);