💾 Archived View for mozz.us › journal › 2020-02-03_removing_hard_wraps.gmi captured on 2023-01-29 at 02:48:04. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2020-09-24)
-=-=-=-=-=-=-
Published 2020-02-03
In accordance with the recent updates to the gemini specification with regards to text formatting:
I've made a pass through my entire gemini site and removed hard-wrapping at 40/80 characters for all text/gemini (".gmi") files.
I'm happy to make this change. Even though it might not have been exactly what I was hoping for (I would have liked to keep the ``` preformat blocks), it's a solid step in the right direction.
Updating files by hand started to get tedious, so of course I wrote a little script to get me ninety-percent of the way there:
I've also updated by gemini-HTTP proxy to respect the new formatting type:
This was ridiculously easy to accomplish in CSS using "white-space: pre-wrap".
<pre style="white-space: pre-wrap">...</pre>
https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
For now, I've also removed the [markdown] shortcut link at the top of the proxy page. You can still access the old markdown mode by appending "?reflow=2" to the URL. I will likely add this back at some point in the future, as more discussions arise for extra markdown syntax.