Fixes #20126 - Added text/markdown to MediaType

This commit is contained in:
Venil Noronha 2016-03-24 12:51:45 +05:30
parent b7fecaff37
commit dc397954ea
2 changed files with 2 additions and 0 deletions

View file

@ -135,6 +135,7 @@ public final class MediaTypes {
public static final MediaType.WithOpenCharset TEXT_CSS = akka.http.scaladsl.model.MediaTypes.text$divcss();
public static final MediaType.WithOpenCharset TEXT_CSV = akka.http.scaladsl.model.MediaTypes.text$divcsv();
public static final MediaType.WithOpenCharset TEXT_HTML = akka.http.scaladsl.model.MediaTypes.text$divhtml();
public static final MediaType.WithOpenCharset TEXT_MARKDOWN = akka.http.scaladsl.model.MediaTypes.text$divmarkdown();
public static final MediaType.WithOpenCharset TEXT_MCF = akka.http.scaladsl.model.MediaTypes.text$divmcf();
public static final MediaType.WithOpenCharset TEXT_PLAIN = akka.http.scaladsl.model.MediaTypes.text$divplain();
public static final MediaType.WithOpenCharset TEXT_RICHTEXT = akka.http.scaladsl.model.MediaTypes.text$divrichtext();

View file

@ -425,6 +425,7 @@ object MediaTypes extends ObjectRegistry[(String, String), MediaType] {
val `text/css` = txt("css", "css")
val `text/csv` = txt("csv", "csv")
val `text/html` = txt("html", "htm", "html", "htmls", "htx")
val `text/markdown` = txt("markdown", "md")
val `text/mcf` = txt("mcf", "mcf")
val `text/plain` = txt("plain", "conf", "text", "txt", "properties")
val `text/richtext` = txt("richtext", "rtf", "rtx")