hugox 0.1.0

A companion to help edit markdown.
Documentation
1
2
3
4
5
6
7
8
//! `hugox` is a library for managing markdown files.
pub mod add_tag;
pub mod file_utils;

/// A trait used to define the command line interface of a program.
pub trait RunCommand {
    fn run(&self);
}