chharvey / chharvey.github.io

My personal web site.
https://chharvey.github.io/
MIT License
4 stars 1 forks source link

footnotes #17

Closed chharvey closed 9 years ago

chharvey commented 10 years ago

add support and wiki documentation for footnotes

Read the Wiki.

Read the HTML5 Rec's suggestion.

chharvey commented 10 years ago

closed in 1daae37de9f59729202e889c151f94e178b95834, but merged into issue #19 branch. Wait until #19 is closed and merged to develop before merging this issue branch into develop.

chharvey commented 10 years ago

merged this branch into branch #19 , will automatically merge into develop when #19 merges.

chharvey commented 9 years ago

Reopening issue for css and html problems:

First, it is very inconvenient to number the ids and hrefs of the reference link (in prose) and the footnote link (in the footer). Keep these attributes semantic but symmetrical. For example,

<sup><a class="Rf" id="rf-ellipsis">1</a></sup> <!-- in prose -->
<sup><a class="Fn" id="fn-ellipsis">1</a></sup> <!-- in footer -->

The spec should be that a reference id always starts with rf- and the footnote id always starts with fn-.

Second, are the sup Elements necessary? Wouldn't it be more concise to style the a.Rf and a.Fn Objects to appear as superscripts? Or do they semantically belong in a superscript?