Skip to content

A command-line Python application for managing, exporting, and publishing your blogs to multiple platforms from Markdown format.

License

Notifications You must be signed in to change notification settings

LoveDuckie/blog-tool

Repository files navigation

Blog Tool

(for lack of imagination)


A command-line Python application for managing, exporting, and publishing your blogs to multiple platforms from Markdown format. ✨

Intended to be used by developers looking to centralise and publish their blog content from a "single source of truth".

FAQ

  • What is Markdown? 📝
    • Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by John Gruber in 2004, Markdown is now one of the world’s most popular markup languages.

  • What is Python? 🐍
    • Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.

Features

  • Manage, export, and publish your blog posts as Markdown files, along with associated image and video assets.
  • Automatically generate impression images for your blogs.
  • Automatically optimise image assets before publishing.
  • Upload image assets to remote sources before publishing blogs.
  • Export blogs as standalone static pages.
  • Publish your blogs to multiple platforms simultaneously, including self-hosted WordPress, Hashnode, and Dev.to.

Repository

.
├── _build
│   ├── doctrees
│   └── html
│       ├── _sources
│       └── _static
├── _static
├── _templates
├── blog_tool
│   ├── cli
│   ├── data
│   │   ├── assets
│   │   ├── config
│   │   ├── headers
│   │   └── templates
│   ├── errors
│   ├── exporters
│   │   ├── decorators
│   │   └── markdown
│   ├── git
│   ├── images
│   │   ├── processors
│   │   └── uploaders
│   ├── logging
│   │   └── formatters
│   ├── markdown
│   ├── models
│   │   ├── configuration
│   │   ├── images
│   │   └── metadata
│   ├── publishers
│   └── utility
│       ├── blogs
│       ├── click
│       ├── config
│       ├── exporters
│       ├── images
│       ├── paths
│       ├── rich
│       ├── types
│       └── uploaders
├── docker
│   └── wordpress
│       └── containers
├── logs
├── scripts
└── tests
    ├── cli
    └── click

Support

This sections outlines the support for third-party tooling and services.

Platforms

Find below the number of platforms that are (currently) supported.

Publishers

An "Uploader" is a Python type responsible for uploading a blog to a target platform after it has been rendered or rasterized. It forms part of a pipeline for rendering and ultimately publishing the blog content to the platform specified.

Exporters

An "Exporter" is a Python type responsible for "rendering" a blog written in Markdown as another output, such as HTML or PDF.

  • PDF
    • Render a PDF document form a Markdown source file. The rendered output is customizable with various parameters.
  • HTML
    • Render a HTML page or collection of pages from a Markdown source file.
  • Silverstripe (HTML)
    • Renders the Markdown source file as a HTML page, with syntax highlighting and image assets available. Supports the silverstripe/blog module.

Structure

This tool manages blog posts or articles by placing them into "collections". A "collection" can be considered as a series of related blog posts. They are synonymous with a book whereby a "chapter" from a book represents a single blog post or article.

Example

Insert example here.

Usage

This tool is installable from PyPi by running the following command.

#!/bin/bash

pip install blog-tool

The tool should then be usable from the command-line by running the following.

Creating a Blog Collection

#!/bin/bash

python -m blog-tool collections create <collection name>

Alternatively, the same command can be expressed as the following.

#!/bin/bash

blog-tool collections create <collection name>
#!/bin/bash

blog-tool collections list

Images

Images are automatically uploaded to image sharing websites should there be configured API keys.

Configuration

The default configuration file is found under blog-tool/data/config/default.ini.

About

A command-line Python application for managing, exporting, and publishing your blogs to multiple platforms from Markdown format.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published