squirrelworks Markdown demo

Headings
Markdown
        
# headingOne
## headingTwo
### headingThree
#### headingFour
##### headingFive
###### headingSix
        
        

headingOne

headingTwo

headingThree

headingFour

headingFive
headingSix
HTML
        
<h1>headingOne<h1>
<h2>headingTwo</h2>
<h3>headingThree</h3>
<h4>headingFour</h4>
<h5>headingFive</h5>
<h6>headingSix</h6>
        
        

headingOne

headingTwo

headingThree

headingFour

headingFive
headingSix
Tables
Markdown
        
| H1  | H2 | H3 | H4
| --- | --- | ----- | --- |
| A1 |  A2    | A3  |   A4|
| B1 |  B2     | B3  |   B4|
| C1 |  C2    | C3  |   C4|
        
        
H1 H2 H3 H4
A1A2A3A4
B1B2B3B4
C1C2C3C4
HTML
        
<table>
<thead>
<tr>
<th>H1</th>
<th>H2</th>
<th>H3</th>
<th>H4</th>
</tr>
</thead>
<tbody>
<tr>
<td>A1</td>
<td>A2</td>
<td>A3</td>
<td>A4</td>
</tr>
<tr>
<td>B1</td>
<td>B2</td>
<td>B3</td>
<td>B4</td>
</tr>
<tr>
<td>C1</td>
<td>C2</td>
<td>C3</td>
<td>C4</td>
</tr>
</tbody>
</table>
        
        
H1 H2 H3 H4
A1 A2 A3 A4
B1 B2 B3 B4
C1 C2 C3 C4
Links
Markdown
        


 [NOAA](https://noaa.gov)


        
NOAA
HTML
        

<a href="https://noaa.gov">NOAA</a>

        
        
NOAA
Markdown
        

> This is the quoted text, 
often enclosed within paragraph 
tags for proper formatting.
        
        

This is the quoted text, often enclosed within paragraph tags for proper formatting.

-- Author Name

HTML
        
<blockquote cite="URL_of_source">
  <p>This is the quoted text, 
often enclosed within paragraph 
tags for proper formatting.</p>
  <p>-- Author Name</p>
</blockquote>

        
        

This is the quoted text, often enclosed within paragraph tags for proper formatting.

-- Author Name

Unordered list
Markdown
        
- item1
- item2
- item3
        
  • item1
  • item2
  • item3
HTML
        
<ul>
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>
        
  • item1
  • item2
  • item3
Ordered list -
Obsidian,
1+enter creates plain-text 1 and breaks line.. no list.
1+space enters list mode, then return key creates new items.
Markdown
        
1. item1
2. item2
3. item3
        
  1. item1
  2. item2
  3. item3
HTML
        
<ul>
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>
        
  1. item1
  2. item2
  3. item3
Italics text - single asterisk on each end.
Markdown
        
*italics text*
        
        
italics text
HTML
        
<em>italics text</em>

        
        
italics text
Bold text - double asterisk on each end.
Markdown
        
**bold text**
        
        
bold text
HTML
        
<strong>bold text</strong>

        
        
bold text


Accessibility
 --overview

Agile
 --DevOps overview
 --Principles

API
 --REST best practices
 --REST demo
 --REST vs RPC
 --Wikipedia API

Blockchain
 --overview

Cloud
 --AWS overview

CSS/HTML
 --Bootstrap carousel
 --Grid demo
 --markdown demo

Electricity
 --fundamentals

Encoding
 --Overview

Ergonomics
 --Desk configuration
 --Device fleet
 --Input device array
 --keystroke mechanics
 --Phones & RSI

ERP
 --Anthology overview
 --Ellucian Banner
 --Higher Ed ERP Simulation Lab
 --PeopleSoft Campus Solutions
 --PESC standards
 --Slate data model

Git
 --syntax overview
 --troubleshooting libcrypto

Hardware
 --Device fleet
 --Homelab diagram

Java
 --Fundamentals

Javascript
 --Advanced Interaction: jQuery & UI Frameworks
 --input prompt demo
 --misc demo
 --Time and Date functions
 --Vue demo

Linux
 --grep demo
 --HCI and Proxmox
 --Proxmox install
 --xammp ftp server

Mail flow
 --DKIM, SPF, DMARC
 --MAPI

Microsoft
 --AZ-800: Administering Windows Server Hybrid Core Infrastructure
 --BAT scripting
 --Group Policy
 --IIS
 --robocopy
 --Server 2022 setup - Virtualbox

Misc
 --Applications
 --regex
 --Resources
 --Sustainable Computing
 --Terminology
 --Tribute to Computer Scientists

Networks
 --BGP Peering & Security Hardening Lab
 --CCNA Lammle Study Guide
 --Cisco 1921/K9 router
 --routing protocols
 --throughput calculations

PHP/SQL
 --Cookies
 --database interaction
 --demo, OSI Layers quiz
 --Foreign key constraint demo
 --fundamentals
 --MySQL and PHPmyAdmin setup
 --pagination
 --security
 --session variables
 --SQL fundamentals
 --structures
 --Tables display

Python
 --fundamentals

Security
 --Overview- GRC (Governance, Risk, and Compliance)
 --Security Blog
 --SSH fundamentals

Serialization
 --JSON demo
 --YAML demo