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

es.weso.utils.json.JsonTwirl.scala Maven / Gradle / Ivy

The newest version!
package es.weso.utils.json
import io.circe._

object JsonTwirl {
  def json2htmlAttr(json: Json): String = {
    // json.spaces2.replaceAllLiterally("'", "")
    json.spaces2.replace("'", "")
    // TODO: Check how to translate sinqle quotes
    // At this moment, single quotes are lost
    // The first version of this replaced single quotes by " but the JSON parser complained
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy