+++ title = "Markdown" description = "Here just for me" date = 2026-04-26 draft = true [taxonomies] tags = ["markdown"] category = ["random"] +++ Emphasis, aka italics, with *asterisks* or _underscores_. Strong emphasis, aka bold, with **asterisks** or __underscores__. Combined emphasis with **asterisks and _underscores_**. Strikethrough uses two tildes. ~~Scratch this.~~ **This is bold text** __This is bold text__ *This is italic text* _This is italic text_ ~~Strikethrough~~ --- Link to the sample section: [Link Text](#header2). ![Screenshot of a comment on a GitHub issue showing an image, added in the Markdown, of an Octocat smiling and raising a tentacle.](https://myoctocat.com/assets/images/base-octocat.svg) *** - George Washington * John Adams + Thomas Jefferson 1. James Madison 2. James Monroe 3. John Quincy Adams 1. First list item - First nested list item - Second nested list item - [x] #739 - [ ] https://github.com/octo-org/octo-repo/issues/740 - [ ] Add delight to the experience when all tasks are complete :tada: ```rust,linenos fn foo(bar: i32) -> String{ bar.into() } ``` reference [^1] [^1]: https://docs.oracle.com/javase/specs/jvms/se23/html/jvms-4.html#jvms-4.1 > indended block > > meow :grin: > [!NOTE] > Highlights information that users should take into account, even when skimming. > [!TIP] > Optional information to help a user be more successful. > [!IMPORTANT] > Crucial information necessary for users to succeed. > [!WARNING] > Critical content demanding immediate user attention due to potential risks. > [!CAUTION] > Negative potential consequences of an action. > Blockquotes can also be nested... >> [!IMPORTANT] >> >> meow >> >> ...by using additional greater-than signs right next to each other... > > > [!CAUTION] > > > ...or with spaces between arrows. >>>> wow Colons can be used to align columns. | Tables | Are | Cool | | ------------- |:-------------:| -----:| | col 3 is | right-aligned | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 | There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown. Markdown | Less | Pretty --- | --- | --- *Still* | `renders` | **nicely** 1 | 2 | 3 | First Header | Second Header | | ------------- | ------------- | | Content Cell | Content Cell | | Content Cell | Content Cell | | Command | Description | | --- | --- | | git status | List all new or modified files | | git diff | Show file differences that haven't been staged | | Command | Description | | --- | --- | | `git status` | List all *new or modified* files | | `git diff` | Show file differences that **haven't been** staged | | Left-aligned | Center-aligned | Right-aligned | | :--- | :---: | ---: | | git status | git status | git status | | git diff | git diff | git diff | | Name | Character | | --- | --- | | Backtick | ` | | Pipe | \| | # Header1 ## Header2 ### Header3 #### Header4 ##### Header5 ###### Header5