Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active August 1, 2024 19:39
Show Gist options
  • Save wilmoore/cc2a68919dd98e05eb31dd71a9fac7e4 to your computer and use it in GitHub Desktop.
Save wilmoore/cc2a68919dd98e05eb31dd71a9fac7e4 to your computer and use it in GitHub Desktop.
Income Sources :: Books :: Everyday Markdown

Income Sources :: Books :: Everyday Markdown

⪼ Made with 💜 by realpolyglot.com

related

Table of Contents

Markdown Elements

HyperLink

  • HyperLinkText: String
  • HyperLink: String
[${HyperLinkText}](${HyperLink})
HyperLink (preview)

Fake images please

Image

  • ImageAlternativeText: String
  • ImageURI: String
![${ImageAlternativeText}](${ImageURI})
Image (preview)

こんにちは

Image Centered

<div align="center">
  <img src="https://octodex.github.com/images/megacat-2.png" width="200"><br>
  <sup><strong>Fig 1:</strong> Megatocat into action</sup>
</div>
preview

Fig 1: Megatocat into action

HyperLink Image

  • ImageAlternativeText: String
  • ImageURI: String
  • HyperLink: String
[![${ImageAlternativeText}](${ImageURI})](${HyperLink})
HyperLink Image (preview)

こんにちは

Line

---
Line (preview)

Source Code

Diff

```diff
10 PRINT "BASIC IS COOL"
- 20 GOTO 11
+ 20 GOTO 10
```
preview
10 PRINT "BASIC IS COOL"
- 20 GOTO 11
+ 20 GOTO 10

Details

Summary

<details>
<summary>Click here to see terminal history + debug info</summary>
<pre>
488 cd /opt/LLL/controller/laser/
489 vi LLLSDLaserControl.c
490 make
491 make install
492 ./sanity_check
493 ./configure -o test.cfg
494 vi test.cfg
495 vi ~/last_will_and_testament.txt
496 cat /proc/meminfo
497 ps -a -x -u
498 kill -9 2207
499 kill 2208
500 ps -a -x -u
501 touch /opt/LLL/run/ok
502 LLLSDLaserControl -ok1
</pre>
</details>
preview
Click here to see terminal history + debug info
488 cd /opt/LLL/controller/laser/
489 vi LLLSDLaserControl.c
490 make
491 make install
492 ./sanity_check
493 ./configure -o test.cfg
494 vi test.cfg
495 vi ~/last_will_and_testament.txt
496 cat /proc/meminfo
497 ps -a -x -u
498 kill -9 2207
499 kill 2208
500 ps -a -x -u
501 touch /opt/LLL/run/ok
502 LLLSDLaserControl -ok1

Alert

NOTE

> [!NOTE]
> Useful information that users should know, even when skimming content.
preview

Note

Useful information that users should know, even when skimming content.

TIP

> [!TIP]
> Helpful advice for doing things better or more easily.
preview

Tip

Helpful advice for doing things better or more easily.

IMPORTANT

> [!IMPORTANT]
> Key information users need to know to achieve their goal.
preview

Important

Key information users need to know to achieve their goal.

WARNING

> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
preview

Warning

Urgent info that needs immediate user attention to avoid problems.

CAUTION

> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
preview

Caution

Advises about risks or negative outcomes of certain actions.


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment