Mercurial > p > roundup > code
view doc/Makefile @ 8053:740c1c5d9ec4
docs: move first paragraph close to footnote return link
Footnotes used to look like:
[1]
first paragraph starts 1.2 em away because of default * + * spacing.
More paragraph lines. ...
It looks wrong. The return link should be closer to the first
paragraph so they are seen as more of a unit. Ideally the return link
'[1]' should be a hanging indent and all paragraphs for the footnote
should be indented. But I can't figure out how to do that. So tighten
up the space before the first paragraph.
[1]
So the first paragraph after the label starts right below it tying
the footnote to the text.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 02 Jul 2024 22:31:00 -0400 |
| parents | 8b5f8b950f58 |
| children | 08fcbdfe670b |
line wrap: on
line source
all: man_html tracker_config.txt cd ..; ./setup.py build_doc tracker_config.txt: ../roundup/configuration.py # generate a current config file python3 ../roundup/scripts/roundup_admin.py \ genconfig _temp_config.txt awk -f format_config.awk _temp_config.txt | \ cat -s > tracker_config.txt rm -f _temp_config.txt ## generate html versions of man pages for inclusion in documentation # find all man pages and generate output file paths. MAN_ROFF=$(wildcard ../share/man/man1/*.1) MAN_HTML=$(patsubst ../share/man/man1/%.1,html_extra/man_pages/%.1.html,$(MAN_ROFF)) man_html: $(MAN_HTML) html_extra/man_pages/%.1.html: ../share/man/man1/%.1 man --html=cat $< > $@ #man2html $< > $@ clean: rm -f _temp_config.txt tracker_config.txt \ html_extra/man_pages/*.1.html
