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.

TableauExcerptExtensions is a Tableau extension that works with Tableau.PostExtension and automatically extracts excerpts from posts for use in index pages. Posts with an existing excerpt field will
be unmodified, and there are three strategies for excerpt extraction.

  1. Excerpt Range Markers can excerpt specific content from anywhere in the post.
---
title: My Post
---

Opening paragraph.

<!--excerpt:start-->This specific section becomes the excerpt.<!--excerpt:end-->

More content.

This extracts only the marked content as the excerpt:

%{excerpt: "This specific section becomes the excerpt."}
  1. Excerpt Split Marker extracts all content before the split marker.
---
title: My Post
---

This is the first paragraph that will become the excerpt.<!--more-->

This is the rest of the post content.

This extracts whatever content is before <!--more-->:

%{excerpt: "This is the first paragraph that will become the excerpt."}
  1. Structural Excerpt Extraction is used as a fallback when no markers are found. This configurable strategy will extract the first N paragraphs (:paragraph), the first N sentences (:sentence), or the first N words (:word). These are simple definitions based on the number of newlines, terminal punctuation, or words split by spaces.

When excerpts are pulled from Markdown content, there is some automatic cleaning:

  • Footnotes are removed from the excerpted text;
  • Reference links are converted to inline ([text][ref][text](url))
  • Whitespace is normalized

Rendering Excerpts

Excerpts are captured in the source content format, so it will be necessary to call the appropriate content formatter for the excerpt.

defmodule MySite.PostsPage do
  def template(assigns) do
    temple do
      for post <- posts do
        if post[:excerpt] do
          div class: "excerpt" do
            Tableau.markdown(post.excerpt)
          end
        end
      end
    end
  end
end

https://github.com/halostatue/tableau_excerpt_extension

Showing Posts 1 to 1

halostatue

halostatue OP

And I’ve now released the version that supports range markers…

Whoops.

— All posts loaded —

Where Next? Top

Trending in Announcing Top

wojtekmach
Hey everyone! Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
handnot2
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application. This library uses Erlang esaml to provide plug enabl...
New
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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
fuelen
Hi all! I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas. You...
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
mudasobwa
I am seeing a lot of aplications of Argumentum ad Vericundiam in software discussions. They do link some piece of writing and point us to...
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
sergio
It’s not that it’s vocabulary is too advanced. It’s something worse. I get lost trying to follow even a paragraph written by Claude. It’...
New
sorenone
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
akoutmos
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews