diff options
Diffstat (limited to '.md')
-rw-r--r-- | .md/about/faq.md | 2 | ||||
-rw-r--r-- | .md/about/whereami.md | 2 | ||||
-rw-r--r-- | .md/tutorials/pc_gaming/common-gfx-card-installation-woes.md | 2 | ||||
-rw-r--r-- | .md/tutorials/vim/how-to-fix-neovim-nerdtree-rendering-issue.md | 8 | ||||
-rw-r--r-- | .md/tutorials/www/quick-intro-html-css.md | 14 |
5 files changed, 14 insertions, 14 deletions
diff --git a/.md/about/faq.md b/.md/about/faq.md index 21b2c73..c8fb90b 100644 --- a/.md/about/faq.md +++ b/.md/about/faq.md @@ -38,7 +38,7 @@ lately that I'm used to it. Honestly, I though the fish was cool. -![puffy](/static/puffy.gif) +![puffy](/static/media/puffy.gif) I don't know the artist of that one unfortunately, I just found it on a forum. diff --git a/.md/about/whereami.md b/.md/about/whereami.md index 8be0a66..01d0809 100644 --- a/.md/about/whereami.md +++ b/.md/about/whereami.md @@ -25,7 +25,7 @@ need to go to make things go beep. In the 60s and 70s, routers tended to be people-based and would require workers spend their time plugging cables into and out of ports so calls could connect. -<img src="/static/human_router.jpg" /> +<img src="/static/media/human_router.jpg" /> *Image of a switchboard courtesy of [Wikipedia diff --git a/.md/tutorials/pc_gaming/common-gfx-card-installation-woes.md b/.md/tutorials/pc_gaming/common-gfx-card-installation-woes.md index 19e3c1c..f9370ec 100644 --- a/.md/tutorials/pc_gaming/common-gfx-card-installation-woes.md +++ b/.md/tutorials/pc_gaming/common-gfx-card-installation-woes.md @@ -138,6 +138,6 @@ you're still seeing your desktop, you should be good to go! I ran Kerbal Space Program 2 (currently in early access) as my first test. -![](/static/ksp2.webm) +![](/static/media/ksp2.webm) Looking good, Jeb! diff --git a/.md/tutorials/vim/how-to-fix-neovim-nerdtree-rendering-issue.md b/.md/tutorials/vim/how-to-fix-neovim-nerdtree-rendering-issue.md index df0af33..1ff6fe7 100644 --- a/.md/tutorials/vim/how-to-fix-neovim-nerdtree-rendering-issue.md +++ b/.md/tutorials/vim/how-to-fix-neovim-nerdtree-rendering-issue.md @@ -6,18 +6,18 @@ scroll the window, I'd get a mess. ## The Problem -![](/static/mess.gif) +![](/static/media/mess.gif) Now, yes, I know I'm a heretic for using the arrow keys and not just jumping around, but I thought it was weird I didn't see this issue anywhere else. Also, vim doesn't have this problem. -![](/static/nomess-vim.gif) +![](/static/media/nomess-vim.gif) It's also not because of my meme tmux setup, the same issue happens in terminator, which I happened to have installed. -![](/static/mess-terminator.gif) +![](/static/media/mess-terminator.gif) ## The Attempt @@ -44,7 +44,7 @@ from Debian's default bashrc, but all I had to do was change it: export TERM='tmux256-color' ``` -![](/static/fixed.gif) +![](/static/media/fixed.gif) No more hacky autocommands! diff --git a/.md/tutorials/www/quick-intro-html-css.md b/.md/tutorials/www/quick-intro-html-css.md index 3fe94ad..d94c254 100644 --- a/.md/tutorials/www/quick-intro-html-css.md +++ b/.md/tutorials/www/quick-intro-html-css.md @@ -91,7 +91,7 @@ tags in this example: <td>FSF!</td> <td> <a href="https://www.fsf.org/"> - <img src="https://static.fsf.org/common/img/logo-new.png" /> + <img src="https://static/media.fsf.org/common/img/logo-new.png" /> </a></td> </tr> <tr> @@ -272,7 +272,7 @@ example: <meta name="keywords" content="HTML, CSS, JavaScript"> <meta name="author" content="John Doe"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <link rel="stylesheet" type="text/css" href="/static/main.css"> + <link rel="stylesheet" type="text/css" href="/static/media/main.css"> </head> <body> <h1>My Great page</h1> @@ -332,7 +332,7 @@ syntax. CSS allows you to set attributes to *all* tags in a specific document and create a unifying style for all your pages. ``` -<link rel="stylesheet" type="text/css" href="/static/main.css"> +<link rel="stylesheet" type="text/css" href="/static/media/main.css"> ``` As before, "href" points to the file to be linked. In this example, we @@ -446,7 +446,7 @@ img.gray { Applied: <img style="filter:grayscale(100%)" -src="/static/jazzcat.jpg" +src="/static/media/jazzcat.jpg" /> You can read lots more options for image formatting @@ -471,7 +471,7 @@ For one, that will only dim black-and-white images; anything else will just turn to mush like this: <img class="icon" -src="/static/jazzcat.jpg" +src="/static/media/jazzcat.jpg" /> Instead, I'd like it to just apply to select elements; I can do so by @@ -486,10 +486,10 @@ img.icon { And to implement it in HTML: ``` -<img class="icon" src="/static/rss.svg" /> +<img class="icon" src="/static/media/rss.svg" /> ``` -<img class="icon" src="/static/rss.svg" /> +<img class="icon" src="/static/media/rss.svg" /> #### Use the div tag to make sections |