Navigation
  • Print
  • Share
  • Copy URL
  • Breadcrumb

    Authoring The Redaction History

    How to set up the redaction history in Hugo Brewm theme

    The redaction history functionality enables you to track and communicate content modifications to readers. Within the post’s front matter, you can specify details such as editor, reviewer, and include explanatory notes (note) about the changes made. This feature requires manual configuration in the post’s front matter section.

    +++
    title = "Authoring The Redaction History"
    history = [
        {date = "2025-02-01", author = "Author Name", reviewer = "Reviewer Name", note = "Example"},
        {date = "2025-02-02", author = "Author Name", editor = "Editor Name", note = "Addendum (example)"},
        {date = "2025-02-03", note = "Errata (example)"},
        ]
    +++
    

    A chronological timeline displaying these information will appear under the article’s information section, as demonstrated in this example post.


    Discussion