1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Generate documentation for Clocks module

This commit is contained in:
Chris Cummer
2018-10-02 17:04:31 -07:00
parent 37849611a4
commit 4f9e76a52c
12 changed files with 336 additions and 27 deletions

View File

@@ -514,6 +514,10 @@ The foreground color for the odd-numbered rows. <br />
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
color name</a>.</p>
<p><code>dateFormat</code> <br />
The format of the date string for all clocks. <br />
Values: Any valid Go date layout which is handled by <a href="https://golang.org/pkg/time/#Time.Format">Time.Format</a>. Defaults to Jan 2.</p>
<p><code>enabled</code> <br />
Determines whether or not this module is executed and if its data displayed onscreen. <br />
Values: <code>true</code>, <code>false</code>.</p>
@@ -537,6 +541,10 @@ Values: <code>alphabetical</code> or <code>chronological</code>. <code>alphabeti
acending order by <code>key</code>, <code>chronological</code> will sort in ascending order by
date/time.</p>
<p><code>timeFormat</code> <br />
The format of the time string for all clocks. <br />
Values: Any valid Go time layout which is handled by <a href="https://golang.org/pkg/time/#Time.Format">Time.Format</a>. Defaults to 15:04 MST.</p>