Skip to content

removed the specific [x] style footnotes/citations. this can be achieved via CSS styling.

Bitbucket Importer requested to merge bitbucket/merged-pr-3 into branch/default

Created originally on Bitbucket by Russ (Russ W)

Was already merged in Bitbucket before import, marked as merged by the import user

Source changeset not longer availableat the time of import. Commit listwill look empty

This patch removes the square brackets for citations and footnotes. The square brackets is a specific style and I don't think it's a good idea to force people to use that style. The bracket style can be replicated in a stylesheet as seen below:

#!css

.footnote > tbody > tr > th:before,
.footnote_reference:before { content: "["; }
.footnote > tbody > tr > th:after,
.footnote_reference:after { content: "]"; }

or to demonstrate the flexibility of this idea:

#!css

.footnote_reference {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
    top: -0.5em;
}

Now the footnotes are superscript!

Merge request reports