src/Pure/PIDE/markup.scala
author hoelzl
Wed, 10 Oct 2012 12:12:35 +0200
changeset 49801 f3471f09bb86
parent 49613 2f6986e2ef06
child 50201 c26369c9eda6
permissions -rw-r--r--
add induction for real Borel measurable functions

/*  Title:      Pure/PIDE/markup.scala
    Module:     PIDE
    Author:     Makarius

Generic markup elements.
*/

package isabelle


object Markup
{
  /* properties */

  val NAME = "name"
  val Name = new Properties.String(NAME)

  val KIND = "kind"
  val Kind = new Properties.String(KIND)


  /* elements */

  val Empty = Markup("", Nil)
  val Broken = Markup("broken", Nil)
}


sealed case class Markup(name: String, properties: Properties.T)