Roxie is a bibliography and citation formatter for the wretched, misconceived, benighted poison that is the Chicago notes and bibliography citation style.
Status: Hey, I just started. This is under heavy development and doesn't do anything useful yet. Also, it's a quick hack. I need it in ten days' time 😬 so code quality? Not my main priority here, mmkay.
const bookTemplate = {
title: "",
authors:[
{
last: "",
first: "",
},
],
editors:[
{
last: "",
first: "",
}
],
translators:[
{
last: "",
first: "",
}
],
imprint: {
place: "",
publisher: "",
year: ""
}
}
const chapterTemplate = {
title: "",
location: "",
authors:[
{
last: "",
first: "",
},
],
translators:[
{
last: "",
first: "",
}
],
in: {
title: "",
editors:[
{
last: "",
first: "",
}
],
imprint: {
place: "",
publisher: "",
year: ""
}
}
}
const journalTemplate = {
title: "",
location: "",
url:"",
authors:[
{
last: "",
first: "",
},
],
journal: "",
volume: "",
issue: "",
date: "",
specialIssue: {
title:"",
editors:[
{
last: "",
first: "",
},
],
}
}