diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-11-26 15:52:26 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-11-26 15:52:26 -0800 |
commit | 204589b2ffc8aa16fa2953017eaa6614f7d05eb5 (patch) | |
tree | b0095f1feb24e939cd470279d2b532bd1f4dc560 | |
parent | 2d5095a08bcb7d0b06583d66e48534986c8d734b (diff) | |
download | mu-204589b2ffc8aa16fa2953017eaa6614f7d05eb5.tar.gz |
use markdown syntax for images without attributes
Sourcehut still can't handle the third :shrug:
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 6f7e3648..c6d472c0 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ cd mu qemu-system-i386 code.img ``` -<img alt='screenshot of Game of Life running on the Mu computer' src='html/life.png'> +![screenshot of Game of Life running on the Mu computer](html/life.png) ([Colorized sources.](http://akkartik.github.io/mu/html/apps/life.mu.html) This is memory-safe code, and most statements map to a single instruction of @@ -123,7 +123,7 @@ Mu programs can be written for two very different environments: The largest program built in Mu today is its prototyping environment for writing slow, interpreted programs in a Lisp-based high-level language. -<img alt='screenshot of the Mu shell' src='html/20210624-shell.png'> +![screenshot of the Mu shell](html/20210624-shell.png) (For more details, see [the `shell/` directory.](https://github.com/akkartik/mu/tree/main/shell#readme)) |