—> Diese Seite ist noch nicht fertig!!
It is recommended that you use the standard double quotation marks for quotation while writing content in OneNote. For more details see Quotation marks
There are two options to insert a nonbreaking space:
There are two options to insert a soft line break:
Gewisse Sonderzeichen werden konvertiert:
function replaceUmlautsandDeleteSC(str) {
return str
.replace(/\\u00df/g, "ss")
.replace(/\\u00e4/g, "ae")
.replace(/\\u00f6/g, "oe")
.replace(/\\u00fc/g, "ue")
.replace(/\\u00c4/g, "Ae")
.replace(/\\u00d6/g, "Oe")
.replace(/\\u00dc/g, "Ue")
.replace(/[^\\w\\s]/gi, "");
}