Skip to content

Blogging made so easy you might as well be coasting smoothly down a snowy mountain track without a care in the world.

License

Notifications You must be signed in to change notification settings

andrewjohnsonsmarty/tobloggan

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tobloggan

Blogging made so easy you might as well be coasting smoothly down a snowy mountain track without a care in the world.

Makefile targets

  • Run make test to execute tests.
  • Run make dev to generate the blog from the /content directory and open a web browser to view the pages in the /generated directory.
  • Run make publish to generate the blog from the /content directory to the /docs directory. Will also commit and push the blog (to kickoff a build of github pages, if configured).

Content Files

Consider a text file called article.md with the following contents:

{
    "draft": true,
    "slug": "/the-path/of-the/article",
    "title": "The Title of the Article",
    "date": "2024-09-25T00:00:00Z"
}

+++

## Markdown content here

This will be a paragraph with _italic_ text and **bold** text.

Some facts about content files and their structure:

  1. All content files must end in .md.
  2. The first element of a content file is a JSON object with the following keys:
    • draft (boolean) If true, the article will not be published.
    • slug (string) The unique URL path of the article.
    • title (string) The text to use as the <h1> of the article.
    • date (string, RFC3339 formatted date) If future, the article will not be published.
  3. The second element of a content file is the separator +++.
  4. The third element of a content file is arbitrary content, formatted as markdown (which will be converted to HTML).

Data Pipeline

Here are the contractual data types (in tobloggan/code/contracts) that each 'station' (in tobloggan/code/stations) receives and then emits:

00_source_scanner:     SourceDirectory -> SourceFilePath (zero or more!)
01_source_reader:      SourceFilePath -> SourceFile
02_article_parser:     SourceFile -> Article
03_article_validator:  Article -> Article
04_draft_removal:      Article -> Article (or nothing)
05_future_removal:     Article -> Article (or nothing)
06_markdown_converter: Article -> Article (w/ Body converted to HTML)
07_listing_renderer:   Article -> Article (buffers ALL, then emits Page at end)
08_article_renderer:   Article -> Page
09_base_url_rewriter:  Page -> Page (adds base-url to all hrefs)
10_page_writer:        Page -> Page
11_reporter:           Page -> NADA (logs/counts errors; logs each successful article)

Github Pages Configuration

github-pages-config

About

Blogging made so easy you might as well be coasting smoothly down a snowy mountain track without a care in the world.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 98.4%
  • Makefile 1.6%