1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 08:32:04 +02:00

(v0.7.1.9068) gramstain to freq()

This commit is contained in:
2019-08-30 14:50:56 +02:00
parent 34a82d091e
commit 88ee1b7268
15 changed files with 211 additions and 238 deletions

View File

@ -77,14 +77,17 @@ $( document ).ready(function() {
// doctoral titles of authors
function doct_tit(x) {
if (typeof(x) != "undefined") {
x = x.replace("Alex", "Prof Dr Alex");
x = x.replace("Bhanu", "Prof Dr Bhanu");
// authors
x = x.replace(/Author, maintainer/g, "Main developer");
x = x.replace(/Author, contributor/g, "Main contributor");
x = x.replace(/Author, thesis advisor/g, "Doctoral advisor");
x = x.replace("Alex", "Prof. Dr Alex");
x = x.replace("Bhanu", "Prof. Dr Bhanu");
x = x.replace("Casper", "Prof. Dr Casper");
x = x.replace("Corinna", "Dr Corinna");
x = x.replace("Casper", "Prof Dr Casper");
// others
x = x.replace("Bart", "Dr Bart");
x = x.replace("Dennis", "Dr Dennis");
x = x.replace(/Author, thesis advisor/g, "Doctoral advisor");
x = x.replace(/Author(, maintainer)?[.]?[^s]/g, "");
}
return(x);
}