halostatue

halostatue

Over the last several months, I’ve been using Tableau to rebuild my long-neglected website. Tableau is part of the Elixir Tools project headed by @mhanberg, and is built on top of MDEx by @leandrocp. This library is one of ten libraries and Elixir extensions that I built. Most of these were built with the assistance of Kiro.

TableauRedirectsExtension is a Tableau extension for generating redirects because Cool URIs don’t change. Redirects are specified in configuration and content metadata and can generate HTML redirects or a JSON redirect map to produce redirect configurations for Caddy, nginx, Apache, or other servers.

HTML Meta-Refresh Redirects

When serving a Tableau site via AWS S3 or similar scenarios, it is often necessary to produce browser-based redirects using HTML files with the “meta refresh” approach. This is generated for directory-style paths and HTML-like files (.html, .htm, and .php). Other redirects configured (redirecting a .jpg to a .svg, for example) will not be written in this way.

config :tableau, TableauRedirectsExtension,
  redirects: %{"/old-url/" => "/new-url/"}
<!DOCTYPE html>
<!-- /old-url/index.html -->
<meta charset="utf-8">
<title>Redirecting to /new-url/…</title>
<link rel="canonical" href="/new-url/">
<meta http-equiv="refresh" content="0; url=/new-url/">
<p>Redirecting to <a href="/new-url/">/new-url/</a>…</p>

JSON Manifest Redirects

When a Tableau site is behind another server like Caddy, Apache, or nginx it is often better to use the generated redirects.json to generate appropriate redirect configuration files. The configuration (and content metadata) produce the mapping:

config :tableau, TableauRedirectsExtension,
  redirects: %{"/old-url/" => "/new-url/"}
{
  "permanent_redirects": [
    {
      "from": ["/old", "/old/", "/old/index.html"],
      "type": "path",
      "to": "/new/",
      "target_type": "internal"
    }
  ]
}

Which can then be converted into a Caddyfile for inclusion:

redir /old-url /new-url permanent
redir /old-url/ /new-url permanent
redir /old-url/index.html /new-url permanent

Configuration

Configuration may be either global (for content that has been removed but redirects to somewhere that is either useful or explains) or specified in the content frontmatter metadata.

Global Redirects

config :tableau, TableauRedirectsExtension,
  enabled: true,
  html: %{enabled: true, message: "Redirecting..."},
  json: %{enabled: true},
  redirects: %{
    "/old-path/" => "/new-path/",
    "/external/" => "https://example.com",
    "/bad-info/" => "/removed/#bad-info"
  }

Frontmatter Redirects

---
title: My Post
permalink: /posts/my-post/
redirects:
  aliases:
    - /blog/old-post
    - /old-location/post
  fragments:
    /other-old-post: "#new-section"
---

An alias redirect goes to the content’s permalink, whereas a fragment redirect goes to the content’s permalink at a specific URI fragment.

https://github.com/halostatue/tableau_redirects_extension

Where Next? Top

Trending in Announcing Top

woylie
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries. offset-based pagination with...
New
MRdotB
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
woylie
I released Doggo, a collection of unstyled Phoenix components. https://github.com/woylie/doggo Features Unstyled Phoenix components....
New
GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
ahamez
Hi everyone, I’ve been working on this protobuf library for 3 years. We use it in the company I work for, EasyMile, to communicate with ...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New
AstonJ
This showed up on my feed.. anyone heard of it? Just hype? Ox Alpha is a reasoning model designed for coding, sustained ag...
New
bartblast
Hey folks, I just published a post about Hologram’s funding and where the project goes next - the short version: Curiosum as Main Spons...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews