diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea5fe2f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +min/* diff --git a/README.md b/README.md index c101fba..b21c488 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,112 @@ # gmi-web -## A bridge between Gemini and HTML -[documentation](https://talon.computer/web/) +**Vision**: Provide the lowest common denominator between HTML/CSS/JS and Gemini + +### HTML +Due to the ambiguity of HTML several translations from Gemini exist in the wild. I propose the following standard: +``` +UL ↔ * +BLOCKQUOTE ↔ > +PRE ↔ ``` +A ↔ => +H[1-3] ↔ #[##] +P +``` +Empty lines should simply be represented as `
` tag and never a `
` tags as that is how "enter" is handled when `contenteditable=true`. It is uncertain why the browser behaves so but they can be safely translated to \n. and you need not translate `\n →
` as that's implied in "preformatted". + +* accessibility +* pre alt text +* inline media + +### CSS + +``` + + +``` + +### variables + +``` +:root { + --foreground: black; + --background: white; + --line-height: 1.5; + --font-size: 1.25rem; + --mono: Consolas, monaco, monospace; + --serif: font-family: georgia, times, serif; + --sans-serif: -apple-system, BlinkMacSystemFont, + 'avenir next', avenir, + helvetica, 'helvetica neue', + ubuntu, + roboto, noto, + 'segoe ui', arial, + sans-serif; +} +``` + +You can customize these using the `` tag of your document. + +``` + +``` + +gmi.css will respect dark mode preferences by inverting these colors. + +### JavaScript + +gmi.js is made up of lines! + +```js +const line = Gemini.line("manipulate the dom\nbut like in a Gemini way\ntry it!") +document.body.prepend(line.dom) +``` + +now try changing the type and content and observing the effects. + +```js +line.type = "UL" +line.content = "now\nit's\na\nlist" +``` + +A document provides a way to handle many lines together: +```js +window.gmi = new Gemini(document.body) +window.gmi.lines = [ + Gemini.line("interesting", "H1"), + Gemini.line("that's convenient"), + Gemini.line("http://talon.computer/js/ now... take me back please", "A"), +] +window.gmi.lines[0].type = "H3" +``` + +the gemtext source is available via .source + +```js +window.gmi.source +``` + +All the gmi.css variables are also available as properties. +``` +let foreground = window.gmi.foreground +let background = window.gmi.background +window.gmi.foreground = background +window.gmi.background = foreground +``` ![CC0](https://licensebuttons.net/p/zero/1.0/80x15.png) diff --git a/docs/css.gmi b/docs/css.gmi deleted file mode 100644 index 0978b0d..0000000 --- a/docs/css.gmi +++ /dev/null @@ -1,43 +0,0 @@ -# gmi.css -## rem based stylesheet for text-focused content inspired by Tachyons. -=> https://tachyons.io/#style Tachyons Style Guide - -* readable -* predictable -* mobile friendly - -``` - - -``` - -### variables -``` -:root { - --foreground: black; - --background: white; - --line-height: 1.5; - --font-size: 1.25rem; - --mono: Consolas, monaco, monospace; - --serif: font-family: georgia, times, serif; - --sans-serif: -apple-system, BlinkMacSystemFont, - 'avenir next', avenir, - helvetica, 'helvetica neue', - ubuntu, - roboto, noto, - 'segoe ui', arial, - sans-serif; -} -``` -> You can customize these using the tag of your document. -``` - -``` - -### Download gmi.css today! -=> //talon.computer/gmi.css gmi.css -=> //talon.computer/gmi.min.css gmi.min.css - -=> /js/ Psst! gmi.js might be interesting to you as well– check it out! :) - -CC0 diff --git a/docs/js.gmi b/docs/js.gmi deleted file mode 100644 index dd50db6..0000000 --- a/docs/js.gmi +++ /dev/null @@ -1,50 +0,0 @@ -# gmi.js -## A bridge between the DOM and Gemini - -gmi.js is made up of lines! -```js -const line = Gemini.line("manipulate the dom\nbut like in a Gemini way\ntry it!") -document.body.prepend(line.dom) -``` -> now try changing the type and content and observing the effects. -```js -line.type = "UL" -line.content = "now\nit's\na\nlist" -``` - -A document provides a way to handle many lines together: -```js -window.gmi = new Gemini(document.body) -window.gmi.lines = [ - Gemini.line("interesting", "H1"), - Gemini.line("that's convenient"), - Gemini.line("http://talon.computer/js/ now... take me back please", "A"), -] -window.gmi.lines[0].type = "H3" -``` -> the gemtext source is available via .source -```js -window.gmi.source -``` -> or maybe a .gmi file would be easier? -```js -window.gmi.download() -``` - -All the gmi.css variables are also available as properties. -``` -let foreground = window.gmi.foreground -let background = window.gmi.background -window.gmi.foreground = background -window.gmi.background = foreground -``` -=> /css/ learn more about gmi.css - -=> https://git.sr.ht/~talon/gmi-web/tree gmi.js is licensed under CC0 and available on sourcehut as apart of gmi-web - -### [WIP] editing! -* enter creates new P -* shift + enter creates newline -* backspace at beginning of line doesn't remove DOM (+ delete on empty lines) -* cross-platform action for changing line type? -* cross-platform action for toggling editable? diff --git a/docs/web.gmi b/docs/web.gmi deleted file mode 100644 index c53c0d6..0000000 --- a/docs/web.gmi +++ /dev/null @@ -1,41 +0,0 @@ -# gmi-web - -## HTML -Due to the ambiguity of HTML several translations from Gemini exist in the wild. I propose the following standard: -``` -UL ↔ * -BLOCKQUOTE ↔ > -PRE ↔ ``` -A ↔ => -H[1-3] ↔ #[##] -P -``` -> Empty lines should simply be represented as. (Some implementations use just
but this sets up contenteditable=true to add content to the line and also Gemini has no "empty" line-type just a line that is empty.) -> The for a link should be presented without any parent elements. Many implementations useto enforce "block" styling as opposed to the default "inline" which renders the link next to the previous block instead of below it. But the nested markup adds an unnecessary layer of indirection in semantics and when parsing. If you must wrap the link it should be with atag and never a
. If you do not wrap the link a simple "a {display: block}" has the same effect (gmi.css uses this). - -P, UL, BLOCKQUOTE, and PRE may also have line-breaks which should be inserted as innerHTML using the following rules: -``` -P ↔
-BLOCKQUOTE ↔-UL ↔-PRE \n (or
) -``` -> These are informed by what the browser uses when contenteditable=true is set on the element and you hit "enter" -> Some implementations render a series of ">" into a series ofwhich is probably fine but it is preferable to group them and insert the subsequent lines as line-breaks. -> Parsers may want to be aware of potential
lines insidetags as that is how "enter" is handled when contenteditable=true. It is uncertain why the browser behaves so but they can be safely translated to \n. and you need not translate \n →
as that's implied in "preformatted". - -* accessibility -* pre alt text -* inline media - -## CSS -Following this standard will allow gmi.css to render your content reliably and readably across many devices. -=> /css/ read more about gmi.css - -## JavaScript -This also paves the way for setting contenteditable on the root element and enabling the browsers native HTML document editor. Unfortunately it does not handle a few annoying quirks which may only be addressed with custom JavaScript. - -gmi.js is currently under active development but already exposes a Gemini.line function which wraps the DOM API following the above standard. This should enable addressing the editability quirks and also provide a foundation for future JS/Gemini mashups. -=> /js/ read more about gmi.js - -=> https://git.sr.ht/~talon/gmi-web/ gmi-web is licensed under CC0 and available on sourcehut diff --git a/min/gmi.min.css b/min/gmi.min.css deleted file mode 100644 index 815a106..0000000 --- a/min/gmi.min.css +++ /dev/null @@ -1 +0,0 @@ -*{margin:0;padding:0;overflow-wrap:anywhere}:root{--foreground:black;--background:white;--line-height:1.5;--font-size:1.25rem;--mono:Consolas,monaco,monospace;--serif:font-family:georgia,times,serif;--sans-serif:-apple-system,BlinkMacSystemFont,'avenir next',avenir,helvetica,'helvetica neue',ubuntu,roboto,noto,'segoe ui',arial,sans-serif}body{max-width:48rem;background-color:var(--background);padding:.5rem;margin:0 auto}h1,h2,h3{font-family:var(--sans-serif);line-height:1.25}h1{font-size:3rem}h2{font-size:2.25rem}h3{font-size:1.5rem}p{font-size:var(--font-size);font-family:var(--serif);line-height:var(--line-height)}a,blockquote,h1,h2,h3,p,ul{color:var(--foreground);background-color:var(--background)}br{line-height:1}a::before{font-size:var(--font-size);font-family:var(--mono);content:"⇒";padding-right:.25rem;vertical-align:middle}a:hover{color:var(--background);background-color:var(--foreground)}a{font-size:var(--font-size);font-family:var(--serif);text-decoration:none;display:block}li::before{font-size:var(--font-size);font-family:var(--mono);content:"*";vertical-align:middle;padding-right:.5rem}ul{font-size:var(--font-size);font-family:var(--serif);line-height:1.25;list-style-type:none}blockquote{font-size:var(--font-size);font-family:var(--serif);line-height:var(--line-height);border-left:.5rem solid var(--foreground);padding-left:.75rem}pre{font-size:1rem;font-family:var(--mono);line-height:1;color:var(--background);background-color:var(--foreground);padding:1.25rem;overflow-y:auto}pre+blockquote{padding-top:.5rem;padding-bottom:.5rem}::-moz-selection,::selection{color:var(--background);background-color:var(--foreground)}pre::-moz-selection,pre::selection{color:var(--foreground);background-color:var(--background)} diff --git a/min/gmi.min.js b/min/gmi.min.js deleted file mode 100644 index 10940fe..0000000 --- a/min/gmi.min.js +++ /dev/null @@ -1 +0,0 @@ -class Gemini{static syntax={P:"",A:"=>",UL:"*",BLOCKQUOTE:">",PRE:"```",H1:"#",H2:"##",H3:"###"};static line(e,t){"string"==typeof e&&(e={content:e,type:t||"P"});let n=Gemini.render(e).dom;return{get dom(){return n},get type(){return this.dom.nodeName},set type(e){n=Gemini.render({dom:this.dom,type:e,content:Gemini.contentFrom(this.dom)}).dom},get content(){return Gemini.contentFrom(n)},set content(e){Gemini.render({dom:n,type:n.nodeName,content:e})},get editable(){return"true"===this.dom.contentEditable},set editable(e){Gemini.render({dom:this.dom,type:this.type,content:this.content,editable:e})},delete(){return this.dom.remove()},get gmi(){const e=Gemini.syntax[this.type],t=Gemini.contentFrom(this.dom).replace(/\n?$/,"");switch(this.type.toUpperCase()){case"PRE":return`${e}\n${t}\n${e}`;default:return t.split("\n").map((t=>`${""!==e?e+" ":""}${t}`)).join("\n")}},get before(){return Gemini.line(this.dom.previousElementSibling)},set before(e){this.before.dom.after(e.dom)},get after(){return Gemini.line(this.dom.nextElementSibling)},set after(e){this.after.dom.before(e.dom)}}}static render(e){if(e.dom&&e.dom.nodeName!==e.type){const t=document.createElement(e.type);e.dom.replaceWith(t),e.dom=t}else e.nodeName?e={dom:e,type:e.nodeName,content:Gemini.contentFrom(e),editable:e.contentEditable}:e.dom=e.dom||document.createElement(e.type||"P");switch(e.dom.contentEditable=e.editable||"inherit",e.type.toUpperCase()){case"A":const{href:t,content:n}=Gemini.link(e.content);e.dom.innerHTML=e.editable&&t!==n?`${t} ${n}`:n,e.dom.href=t;break;case"UL":e.dom.innerHTML=e.content.split("\n").map((e=>e.length>0?`${e} `:"")).join("\n");break;case"BLOCKQUOTE":e.dom.innerHTML=e.content.split("\n").map((e=>`${e}`)).join("\n");break;case"PRE":e.dom.textContent=e.content;break;default:e.dom.innerHTML=e.content.replace(/\n+/g,"
")}return e}static contentFrom(e){switch(e.nodeName.toUpperCase()){case"BLOCKQUOTE":return Array.from(e.childNodes).map((e=>e.textContent)).join("\n");case"UL":return Array.from(e.children).map((e=>e.textContent)).join("\n");case"A":const{href:t,content:n}=Gemini.link(e.textContent);return`${t||e.href} ${n}`;case"PRE":return e.textContent;default:return e.innerHTML.replace(/
/g,"\n")}}static link(e=""){return/((?[^\s]+\/\/[^\s]+)\s)?(? .+)/.exec(e).groups}constructor(e){this.root=e}get editable(){return"true"===this.root.contentEditable}set editable(e){this.root.contentEditable=e,this.lines.forEach((t=>t.editable=e))}get lines(){return Array.from(this.root.children).filter((e=>["P","BLOCKQUOTE","A","PRE","UL","H1","H2","H3"].includes(e.nodeName))).map(Gemini.line)}set lines(e){this.root.textContent="",this.root.append(...e.map((e=>e.dom)))}get source(){return this.lines.map((e=>e.gmi)).join("\n")}download(){const e=document.createElement("a");e.setAttribute("href","data:text/gemini;charset=utf-8,"+encodeURIComponent(this.source)),e.setAttribute("download",this.lines[0].content.replace(/\s/g,"_")+".gmi"),e.style.display="none",document.body.appendChild(e),e.click(),document.body.removeChild(e)}get foreground(){return getComputedStyle(this.root).getPropertyValue("--foreground")}set foreground(e){return this.root.style.setProperty("--foreground",e)}get background(){return getComputedStyle(this.root).getPropertyValue("--background")}set background(e){return this.root.style.setProperty("--background",e)}get size(){return getComputedStyle(this.root).getPropertyValue("--font-size")}set size(e){return this.root.style.setProperty("--font-size",e)}get lineHeight(){return getComputedStyle(this.root).getPropertyValue("--line-height")}set lineHeight(e){return this.root.style.setProperty("--line-height",e)}get serif(){return getComputedStyle(this.root).getPropertyValue("--serif")}set serif(e){return this.root.style.setProperty("--serif",e)}get sans(){return getComputedStyle(this.root).getPropertyValue("--sans")}set sans(e){return this.root.style.setProperty("--sans",e)}get mono(){return getComputedStyle(this.root).getPropertyValue("--mono")}set mono(e){return this.root.style.setProperty("--mono",e)}}