Some wikis can customize the text shown for the backlinks. Instead of just having a simple href string for a backlink in the references output, let's make it an object with href and text so clients could use that for displaying any wiki-specific text.
OLD:
"back_links": [
"./PageTitle#cite_ref-ref1_1-0",
"./PageTitle#cite_ref-ref1_1-1"
],NEW:
"back_links": [{
"href": "./PageTitle#cite_ref-ref1_1-0",
"text": "a"
}, {
"href": "./PageTitle#cite_ref-ref1_1-1"
"text": "b"
}],