The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

wrt-display - print static HTML from wrt entries

USAGE

    wrt display new       # newest entries
    wrt display all       # table of contents for all dated entries
    wrt display 2016/4/1  # a specific date
    wrt display 2016/4    # all entries for a specific month
    wrt display 2016/4    # summary of entries for a year
    wrt display fulltext  # complete text of archive
    wrt display feed      # Atom feed of most recent month's entries

    # Take list of entries to display from standard input:
    echo 2016/4/1 | wrt display --stdin

    # Specify a different config file:
    wrt display --config ./wrt.json ...

    # Display help:
    wrt display --help

DESCRIPTION

wrt-display displays HTML for the given entry or entries in the current wrt repository to stdout. Entries may be specified by date or name.

Special Entries

new will return entries for the most recent month.

feed will return an Atom feed for the most recent month.

all will return a table-of-contents for all date-based entries.

fulltext will return the full content of all date-based entries in the archive.

Months in the form of yyyy/mm will return all entries for that month.

Years in the form of yyyy will return a summary of entries for the year.

Detailed documentation can be found in the App::WRT man page or at https://code.p1k3.com/gitea/brennen/wrt.

LICENSE

    wrt is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

AUTHOR

Brennen Bearnes <code@p1k3.com>