130 lines
4 KiB
Markdown
130 lines
4 KiB
Markdown
# gmi-web
|
|
|
|
**Vision**: Provide the lowest common denominator between HTML/CSS/JS and Gemini.
|
|
|
|
# HTML spec
|
|
|
|
Due to the ambiguity of HTML several translations from Gemini exist in the wild. I propose the following standard:
|
|
|
|
```
|
|
<li> ↔ *
|
|
<blockquote> ↔ >
|
|
<pre> ↔ ```
|
|
<a> ↔ =>
|
|
<h[1-3]> ↔ #[##]
|
|
<p>
|
|
```
|
|
|
|
The `<a>` for a link should be presented without any parent elements. Many implementations use `<div>` to 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. `<a style="display: block;">` has the same effect (gmi.css uses this).
|
|
|
|
Empty lines should simply be represented as `<p><br></p>` this sets up `contenteditable=true` to add content to the line compared to just `<br>`.
|
|
|
|
Much like the lines of a `<pre>`, the lines of `<li>list items</li>` need to be wrapped in `<ul>`.
|
|
|
|
### head
|
|
|
|
The generated HTML document must have a `<head>` tag with _at minimum_ the following:
|
|
|
|
```
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
```
|
|
|
|
It is recommended to also include a `<title>` tag and `<meta|link>` tags for _language_, the _canonical_ gemini url and _description_.
|
|
|
|
### Optional: inline media
|
|
|
|
If a link is consumable by `<img>`, `<audio>` or `<video>` you may insert the media inline. Images and video should be styled to have `max-width: 100%;` so they don't overflow the body. It's a good idea to also include the "controls" attribute for videos and audio. `<audio>` tags require `display: block;` just like `<a>`.
|
|
|
|
## gmi.css
|
|
|
|
Style your HTML generated Gemini content in a readable, predictable and mobile-friendly fashion!
|
|
|
|
```html
|
|
<meta name="color-scheme" content="dark light">
|
|
<link rel="stylesheet" href="gmi.min.css"/>
|
|
```
|
|
gmi.css will respect system dark mode preferences by inverting `--foreground` and `--background`. And also exposes [many other variables](./gmi.css) for your customizing enjoyment!
|
|
|
|
```html
|
|
<html style="--foreground:#555555; --background:#9EEBCF;">
|
|
```
|
|
|
|
## gmi-web(1)
|
|
|
|
A reference implementation of what has been discussed above.
|
|
|
|
*You will need*:
|
|
- [node(1) w/ npm(1)](https://nodejs.org/en/)
|
|
|
|
```sh
|
|
npm install -g git+https://codeberg.org/talon/gmi-web.git
|
|
```
|
|
|
|
```
|
|
gmi-web [--css] [files..]
|
|
|
|
Convert .gmi to .html. See gmi-web(1) for more details.
|
|
|
|
Positionals:
|
|
files The *.gmi files to convert [required]
|
|
|
|
Options:
|
|
--version Show version number [boolean]
|
|
--help Show help [boolean]
|
|
--images Include images [boolean] [default: false]
|
|
--audio Include audio [boolean] [default: false]
|
|
--video Include video [boolean] [default: false]
|
|
--css Include gmi.css [boolean] [default: true]
|
|
```
|
|
|
|
### License
|
|
|
|
gmi-web is free and unencumbered public domain software. For more information, see http://unlicense.org/ or the accompanying UNLICENSE file.
|
|
|
|
<!-- TODO
|
|
### gmi.js
|
|
|
|
Manipulate the DOM with a Gemini inspired API.
|
|
|
|
```js
|
|
const line = Gemini.line("manipulate the dom\nbut like in a Gemini way\ntry it!")
|
|
document.body.prepend(line.dom)
|
|
```
|
|
|
|
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.
|
|
|
|
```js
|
|
let foreground = window.gmi.foreground
|
|
let background = window.gmi.background
|
|
window.gmi.foreground = background
|
|
window.gmi.background = foreground
|
|
```
|
|
-->
|
|
|