From 031aa91594b4ed4d218dced540997c926da543dd Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Fri, 17 Jan 2025 11:46:51 +0000 Subject: [PATCH] testing different preview styles --- css/retro.css | 6 +++--- md/JUNK/sample.md | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/css/retro.css b/css/retro.css index 96d60bf..9260924 100644 --- a/css/retro.css +++ b/css/retro.css @@ -438,9 +438,9 @@ a:active { } code { - /* font-family: "DEC Terminal Modern", monospace; */ + font-family: "DEC Terminal Modern", monospace; font-size: inherit; - /* color: #fdd461; - background: #524646; */ + /* color: #fdd461; */ + background: #524646; line-height: 1.15; } diff --git a/md/JUNK/sample.md b/md/JUNK/sample.md index 83bda43..a33e948 100644 --- a/md/JUNK/sample.md +++ b/md/JUNK/sample.md @@ -23,11 +23,10 @@ Ok, so embedding an IFrame works out of the box. But, what about more complicate Well, that's just grand! It seems that I can drop *any* html I want into *any* markdown I want, and it will render just fine! Ok, but what about, say, syntax hilighting, which requires a javascript?. Let's find out. For this, all I *should* need to do, is provide a markdown codefence, specifying the language, because the apache plugin will render it as `
` which is what both highlight.js and prism.js use. In this case, we'll make a python snippet. The key issue here, is that I already have css theming for the code fence. So, will the javascript override it, merge with it, or be ignored? We shall see:
 
-

+
 10 PRINT "HELLO!"
 20 GOTO 10
 30 END
-
 
```language-python