2022-07-27 08:48:57 +00:00
|
|
|
---
|
|
|
|
layout: post
|
|
|
|
title: "You can read my blog posts using `curl`"
|
|
|
|
subtitle: "Publishing raw version of my blog posts"
|
|
|
|
date: 2022-07-27 00:00:00
|
|
|
|
permalink: raw-permalinks-for-accessibility/
|
|
|
|
categories: programming
|
|
|
|
---
|
|
|
|
|
|
|
|
I realised that my blog and its content, even though very simple and
|
|
|
|
lightweight, are only accessible using a full-fledged web browser. I thought it
|
|
|
|
would be interesting if my blog posts were available to be read using an even
|
|
|
|
simpler interface, cURL!
|
|
|
|
|
|
|
|
To make this work, I made a very simple Jekyll plugin that automatically
|
|
|
|
generates a "raw" page for every post I create. These raw pages are available by
|
|
|
|
prepending `/raw` to the URL of my posts.
|
|
|
|
|
|
|
|
Try it out:
|
|
|
|
|
|
|
|
```
|
2023-12-06 18:15:32 +00:00
|
|
|
curl https://theread.me/raw/raw-permalinks-for-accessibility/
|
|
|
|
curl https://theread.me/raw/embodying-the-avatar-videogames/
|
|
|
|
curl https://theread.me/raw/rust-box-str-vs-string/
|
2022-07-27 08:48:57 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
You can get a raw listing of my blog posts at `/raw/`:
|
|
|
|
|
|
|
|
```
|
2023-12-06 18:15:32 +00:00
|
|
|
curl https://theread.me/raw/
|
2022-07-27 08:48:57 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
To make this easily readable on small screens and terminals, I used vim's
|
|
|
|
text-width setting to make sure my lines do not exceed 80 characters:
|
|
|
|
|
|
|
|
```
|
|
|
|
:set tw=80
|
|
|
|
```
|
|
|
|
|
|
|
|
And to reformat my posts, I went over my text lines (I avoided breaking code
|
|
|
|
sample lines), and used `gq` to reformat each section.
|
|
|
|
|
|
|
|
The source code for my blog is available on my
|
2023-12-06 18:15:32 +00:00
|
|
|
[git](https://git.theread.me/thereadme/theread.me) server, you can find the source
|
2022-07-27 08:48:57 +00:00
|
|
|
for [the raw
|
2023-12-06 18:15:32 +00:00
|
|
|
plugin](https://git.theread.me/thereadme/theread.me/src/branch/master/_plugins/raw.rb)
|
2022-07-27 08:48:57 +00:00
|
|
|
as well as the [layout
|
2023-12-06 18:15:32 +00:00
|
|
|
file](https://git.theread.me/thereadme/theread.me/src/branch/master/_layouts/raw.html).
|