All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pine.XmlEntities.scala Maven / Gradle / Ivy

There is a newer version: 0.1.7
Show newest version
package pine

object XmlEntities {
  /** @see https://www.w3.org/TR/REC-xml/#sec-predefined-ent */
  val entities: Map[String, String] = Map(
    "lt" -> "\u003C",
    "gt" -> "\u003E",
    "amp" -> "\u0026",
    "apos" -> "\u0027",
    "quot" -> "\u005C\u0022"
  )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy