Is it possible to add (not overwrite) "search-and-replace" pairs to a previously defined prince-text-replace property?
For instance, say a have a master .css file including:
body {
prince-text-replace: "mycolor" "green";
}
and for a specific document I want to also replace "myfruit" with "apple". If I don't want (or can't) modify the master .css, I cannot just use an additional .css file with:
body {
prince-text-replace: "myfruit" "apple";
}
because then occurrences of "mycolor" are not replaced with "green". Is there a way to have this second definition concatenated to the first?, i.e., make it as if I had said:
body {
prince-text-replace: "mycolor" "green" "myfruit" "apple";
}
If this is not currently possible, as it seems, it could be a nice extension to have.
For instance, say a have a master .css file including:
body {
prince-text-replace: "mycolor" "green";
}
and for a specific document I want to also replace "myfruit" with "apple". If I don't want (or can't) modify the master .css, I cannot just use an additional .css file with:
body {
prince-text-replace: "myfruit" "apple";
}
because then occurrences of "mycolor" are not replaced with "green". Is there a way to have this second definition concatenated to the first?, i.e., make it as if I had said:
body {
prince-text-replace: "mycolor" "green" "myfruit" "apple";
}
If this is not currently possible, as it seems, it could be a nice extension to have.