src/Pure/General/markup.scala
author wenzelm
Thu, 25 Sep 2008 13:21:13 +0200
changeset 28354 c5fe7372ae4e
parent 27970 3dd5fbdf61c4
child 29140 e7ac5bb20aed
permissions -rw-r--r--
explicit type OrdList.T;

/*  Title:      Pure/General/markup.scala
    ID:         $Id$
    Author:     Makarius

Common markup elements.
*/

package isabelle

object Markup {

  /* position */

  val LINE = "line"
  val COLUMN = "column"
  val OFFSET = "offset"
  val END_LINE = "end_line"
  val END_COLUMN = "end_column"
  val END_OFFSET = "end_offset"
  val FILE = "file"
  val ID = "id"


  /* messages */

  val PID = "pid"
  val SESSION = "session"


  /* content */

  val ROOT = "root"
  val RAW = "raw"
  val BAD = "bad"
}