Skip to content

Commit

Permalink
Quick Save
Browse files Browse the repository at this point in the history
  • Loading branch information
rsdoiel committed Jun 20, 2023
1 parent aa27ad3 commit b12521f
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 28 deletions.
6 changes: 6 additions & 0 deletions links-to-html.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
-- links-to-html.lua converts links to local Markdown documents to
-- there respective .html counterparts.
function Link(el)
el.target = string.gsub(el.target, "%.md", ".html")
return el
end
18 changes: 9 additions & 9 deletions man/man1/osf2txt.1
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ OPTIONS
.IP
.nf
\f[C]
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
\f[R]
.fi
.PP
Expand Down
18 changes: 9 additions & 9 deletions osf2txt.1.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
<p>DESCRIPTION</p>
<p>osf2txt is a command line program that reads an osf file and returns plain text</p>
<p>OPTIONS</p>
<pre><code>-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version</code></pre>
<pre><code>-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version</code></pre>
<p>EXAMPLES</p>
<p>Convert <em>screenplay.osf</em> into <em>screenplay.txt</em>.</p>
<pre><code>osf2txt -i screenplay.osf -o screenplay.txt</code></pre>
Expand Down
18 changes: 9 additions & 9 deletions osf2txt.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ and returns plain text

OPTIONS

-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version


EXAMPLES
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const (
ReleaseDate = "2023-06-20"

// ReleaseHash, the Git hash when version.go was generated
ReleaseHash = "05f5925"
ReleaseHash = "aa27ad3"

LicenseText = `
All rights reserved.
Expand Down

0 comments on commit b12521f

Please sign in to comment.