We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8ed52a commit 8c33d8dCopy full SHA for 8c33d8d
1 file changed
src/main/java/com/formulasearchengine/mathmltools/mml/elements/MathDoc.java
@@ -82,7 +82,7 @@ public static String tryFixHeader(String inputXMLString) {
82
*
83
* @param newTeX
84
*/
85
- void changeTeXAnnotation(String newTeX) {
+ public void changeTeXAnnotation(String newTeX) {
86
dom.getDocumentElement().setAttribute("alttext", newTeX);
87
if (getAnnotationElements().getLength() > 0) {
88
log.trace("Found annotation elements");
@@ -147,7 +147,7 @@ public String toString() {
147
return null;
148
}
149
150
- void fixGoldCd() {
+ public void fixGoldCd() {
151
getSymbolsFromCd("latexml").filter(n -> n.getCName().startsWith("Q")).forEach(cSymbol -> {
152
log.trace("Processing symbol {}", cSymbol);
153
cSymbol.setCd("wikidata");
0 commit comments