Sample ━━━━━━ There is a glossary item in vibe coding here and clippy no simpy. Date: January 25, 2021 title ━━━━━ subtitle ──────── ### sub-subtitle #### sub-sub-subtitle ##### sub-sub-sub-subtitle ###### sub-sub-sub-sub-subtitle Glossary ──────── There is a glossary item in vibe coding here and clippy -no-simpy/" class="glossary-term" title=""Clippy no Simpy" is a term coined by Louis Rossmann, when people try to stand up for companies doing scummy things like charging your for features that you...">clippy no simpy. Now you don’t have to manually link to how to create a virtual environment every time you mention virtual environments in any post that needs a virtual environment. Paragraph ───────── Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor Hover me incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. CodeBlock ───────── ``` import this print("that") ``` Horizontal rule ─────────────── -------- Blockquote ────────── │ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Table ───── +-----------+-------------+ | Syntax | Description | +-----------+-------------+ | Header | Title | | Paragraph | Text | +-----------+-------------+ Task List ───────── - Write the press release - Update the website - Contact the media Highlight ───────── I need to highlight these very important words. Bold ──── This text has bold text Italics ─────── This text has italic text Subscript ───────── ``` H~2~0 ``` H2O Superscript ─────────── ``` X^2^ ``` X^2^ Emoji ───── Emoji support not yet working ``` That is so funny! :joy: :rocket: :thumbs_up: :grinning_face: :fire: ``` That is so funny! 😂 🚀 :thumbs_up: :grinning_face: 🔥 Abbreviations ───────────── *[HTML ]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium The HTML specification is maintained by the W3C. Keys ──── Ctrl+Alt+Del Win+9 Mark ──── ``` ==marked== ``` marked marked => inserted Containers ────────── here be dragons here warning here be dragons be careful more containers markdown ::: {.text-pink-900} :::: here ──── there there ───── ``` import this ``` ::: ::: second container I still have pink text, but no pink background ::: :::: carousel ──────── Admonitions ─────────── NOTE sample note │ this is a sample NOTE sample note (collapsed by default) │ this is a sample │ │ it’s collapsible and open NOTE sample note (collapsed by default) │ this is a sample │ │ it’s collapsible and closed DANGER be careful │ this is super dang. │ │ subtitle │ ──────── REMINDER │ this is a reminder CAUTION │ this is a caution ATTENTION │ this is a attention HINT │ this is a hint ERROR │ this is a error IMPORTANT │ this is a important SEEALSO │ this is a seealso TIP │ this is a tip TODO │ this is a todo WARNING │ this is a warning SETTINGS │ this is a settings vsplit ────── ``` !!! vsplit I Have two opinions !!! vsplit Left Opinion supporting arguments * lorem ipsum * ipsum dolor - [x] lorem ipsum - [ ] ipsum dolor !!! vsplit Right Opinion supporting arguments * lorem ipsum * ipsum dolor - [ ] lorem ipsum - [x] ipsum dolor ``` Here is the result of that markdown. VSPLIT I Have two opinions │ VSPLIT Left Opinion │ │ supporting arguments │ │ │ │ - lorem ipsum │ │ - ipsum dolor │ │ │ │ - lorem ipsum │ │ - ipsum dolor │ │ VSPLIT Right Opinion │ │ supporting arguments │ │ │ │ - lorem ipsum │ │ - ipsum dolor │ │ │ │ - lorem ipsum │ │ - ipsum dolor A clean vsplit VSPLIT │ VSPLIT Hello World │ │ Here is a hello world application written in the typer cli framework for cli. │ │ VSPLIT │ │ ``` │ │ ``` python │ │ ``` │ │ │ │ #!/usr/bin/env -S uv run –quiet –script │ │ │ │ /// │ │ ━━━ │ │ │ │ requires-python = “>=3.12” │ │ ━━━━━━━━━━━━━━━━━━━━━━━━━━ │ │ │ │ dependencies = [ │ │ ━━━━━━━━━━━━━━━━ │ │ │ │ “typer”, │ │ ━━━━━━━━ │ │ │ │ ] │ │ ━ │ │ │ │ /// │ │ ━━━ │ │ │ │ import typer │ │ │ │ app = typer.Typer() │ │ │ │ @app.command() def hello(name: str = “World”): “““Prints a greeting message.””” typer.echo(f"Hello, {name}!") │ │ │ │ if name == “main”: app() html in md ────────── html without the markdown atrribute will not be parsed as markdown VSPLIT │ VSPLIT │ │ ``` │ │ ``` markdown │ │ ``` │ │ │ │ # markdown in html │ │ │ │ This is not markdown │ │ │ │ ``` │ │ VSPLIT │ │ ``` │ │
│ │ ``` │ │ │ │ markdown in html │ │ ━━━━━━━━━━━━━━━━ │ │ │ │ This is not markdown