File size: 1,445 Bytes
2f461e6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
+++
author = ["Author Name"]
title = "Authoring The Redaction History"
description = "How to set up the redaction history in Hugo Brewm theme"
date = "2025-02-03"
type = "post"
draft = false
translationKey = "history"
coffee = 1
tags = ["authoring", "redaction", "history"]
categories = ["authoring"]
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)"},
]
toot = "https://infosec.exchange/@foxx/113979609651534969"
+++

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.

```toml
+++
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.