From 4d4d5967ebbf22448486df0a97bbcc81693c8557 Mon Sep 17 00:00:00 2001 From: dvs1 Date: Mon, 16 Dec 2024 14:42:36 +1000 Subject: Add about and testing sub sites, and stuff everything into menus. --- About/index.md | 23 ---------- about/index.md | 23 ++++++++++ default.template | 2 +- menu.md | 6 +++ testing/Connie_click-me.gif | Bin 0 -> 4259 bytes testing/index.md | 102 ++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 132 insertions(+), 24 deletions(-) delete mode 100644 About/index.md create mode 100644 about/index.md create mode 100644 menu.md create mode 100644 testing/Connie_click-me.gif create mode 100644 testing/index.md diff --git a/About/index.md b/About/index.md deleted file mode 100644 index cd41201..0000000 --- a/About/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -favicon: cartdave_favicon.png -pagetitle: "notYetAnotherWiki is not another wiki, at least not yet. It'll be much more than that, eventually." -author: onefang -webtrail: "Web trail goes here." -history: https://sledjhamr.org/cgit/notYetAnotherWiki/log/About/index.md ---- - -This is a new directory, an entire PR department can hang out here. - -notYetAnotherWiki is not another wiki, at least not yet. It'll be much more than that, eventually. - -So to start with it's not a wiki. It's currently a way to create a web -site with CommonMark wiki markup, using git to update the content. - -So it's not a wiki, yet. - -Next comes accounts and online editing of content with the web pages. It'll then barely be a wiki. - -The missing bit is talk pages, which requires some sort of archiving chat -system built into the thing. Now it's Yet Another Wiki. - -Finally comes the magic, so it's "not Yet Another Wiki", it's much more than that. diff --git a/about/index.md b/about/index.md new file mode 100644 index 0000000..cd41201 --- /dev/null +++ b/about/index.md @@ -0,0 +1,23 @@ +--- +favicon: cartdave_favicon.png +pagetitle: "notYetAnotherWiki is not another wiki, at least not yet. It'll be much more than that, eventually." +author: onefang +webtrail: "Web trail goes here." +history: https://sledjhamr.org/cgit/notYetAnotherWiki/log/About/index.md +--- + +This is a new directory, an entire PR department can hang out here. + +notYetAnotherWiki is not another wiki, at least not yet. It'll be much more than that, eventually. + +So to start with it's not a wiki. It's currently a way to create a web +site with CommonMark wiki markup, using git to update the content. + +So it's not a wiki, yet. + +Next comes accounts and online editing of content with the web pages. It'll then barely be a wiki. + +The missing bit is talk pages, which requires some sort of archiving chat +system built into the thing. Now it's Yet Another Wiki. + +Finally comes the magic, so it's "not Yet Another Wiki", it's much more than that. diff --git a/default.template b/default.template index 1e08cb6..0469099 100644 --- a/default.template +++ b/default.template @@ -34,7 +34,7 @@ - +
alt textsite top menu plus login and register buttons.about   testing   plus login and register buttons
menu for the current directory diff --git a/menu.md b/menu.md new file mode 100644 index 0000000..7a0e09f --- /dev/null +++ b/menu.md @@ -0,0 +1,6 @@ +--- +template: menu +--- + +- [home](index.HTML) +- [TODO](TODO.HTML) diff --git a/testing/Connie_click-me.gif b/testing/Connie_click-me.gif new file mode 100644 index 0000000..6f0b361 Binary files /dev/null and b/testing/Connie_click-me.gif differ diff --git a/testing/index.md b/testing/index.md new file mode 100644 index 0000000..d044970 --- /dev/null +++ b/testing/index.md @@ -0,0 +1,102 @@ +--- +pagetitle: "G'day world!" +author: onefang +webtrail: "Web trail goes here." +--- + +I've been around since the early sixties, but no one ever noticed.  You +really should have tried to pay attention though, I'm awesome.  I try to +help the world, but that's not what everyone wants me to do.$_$ Well, the +people in charge of this poor defenseless world of ours. + + +*** + +# Spaces + +Can it *handle* my _usual_ two **space** sentence breaks? Let's test it.$_$ Not by default. + +The \\ before a space turns it into a "a literal unicode nonbreaking space character" which looks invisible in the source.  \--ascii should output the HTML code far that.$_$ Except doesn't actually work. + +Also a \\ at the end of a line turns into a line break, though they get wrapped in paragraph tags.$_$ lol + +Take two.$_$ And now for something completely different.  It's not consistant, need to manually put in the nbsp a few times above.  Ah, it only works for the first one per line. + +\ + +## Strike out + +Test ~~strike~~ --out--.$_$ Needs the extension. + +### URL + +[untalenz](https://untalenz.rocks/) + +https://sledjhamr.org/ + +# Lists + + +* zero +* 1 +* two + +- zero +- 1 +- two + + +No way to say "here is the end of the list" without putting something **else** here?$_$ Ah a comment will work, or anything else. + + +1. one +2. 2 + + + + + +0. 0 +1. one +2. 2 + +Autonumbering? Nope. B-( + +0. zero + 1 + two + + +# images + +![alt text](Connie_click-me.gif "title") + +![figcaption](Connie_click-me.gif "title") + +# code + + a simple + indented code block + + *hi* + + - one + + Plus some extra text. + +~~~ +< + > +~~~ + +~~~lua +-- Show some Lua code here, may even be highlighted right. +print("G'day world!") +-- Let's see what happens with the HTML output by cmark, then gets rendered by the web browser, inside my CSS styled pre code thingy that cmark produces. For a very very very loooong line. Needs to be much longer. What else can I add to this already quite long line to get it to trigger being overly long? I need even mooooooore??? +print'The problem here is that I have to use CSS to style these things, coz cmark wont let me at the style stuff as far as I can see. But using CSS web browsers think the nmall box STILL extends all the way to the end of the content, but the scroll works anyway. So it's fucking up the size of the container.' +~~~ + +> # What is a blockquote? +> Still don't know. lol +> +> Just another useless way to eat space I guess.$_$ shrugs -- cgit v1.1