Skip to content

Commit 0c722bf

Browse files
authored
Merge pull request avrdudes#903 from dl8dtl/term-docs
Terminal mode documentation
2 parents 28d1442 + 33bace0 commit 0c722bf

File tree

4 files changed

+167
-10
lines changed

4 files changed

+167
-10
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ with the help of [various contributors](./AUTHORS).
1616
The latest version of AVRDUDE is always available here:\
1717
<https://github.com/avrdudes/avrdude>
1818

19+
## Documentation
20+
21+
Documentation is [here](https://dl8dtl.github.io/avrdude/).
22+
1923
## Getting AVRDUDE for Windows
2024

2125
To get AVRDUDE for Windows, install the latest version from the [Releases](http://download.savannah.gnu.org/releases/avrdude/) page.

src/doc/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ all-local: info html ps pdf
4040
html: avrdude-html/avrdude.html
4141

4242
avrdude-html/avrdude.html: $(srcdir)/$(info_TEXINFOS) $(GENERATED_TEXINFOS)
43-
texi2html -split_node $(srcdir)/$(info_TEXINFOS)
43+
texi2html --split=node --css-include=$(srcdir)/avrdude.css $(srcdir)/$(info_TEXINFOS)
4444
if [ -e ./avrdude.html -o -e ./avrdude_1.html ]; then \
4545
mkdir -p avrdude-html ; \
4646
mv -f *.html avrdude-html ; \

src/doc/avrdude.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
body { background-color: #ffd; }
2+
h1 { text-shadow: .05em .05em #ccc; }
3+
table {
4+
border: 3px solid #ccf;
5+
background-color: white;
6+
}
7+
div.smallexample {
8+
background-color: #dfd;
9+
border: 3px solid #cfc;
10+
}
11+
div.example {
12+
background-color: #dfd;
13+
border: 3px solid #cfc;
14+
}
15+
samp {
16+
color: blue;
17+
}
18+
code {
19+
color: green;
20+
}

0 commit comments

Comments
 (0)