src/Pure/PIDE/markup.ML
changeset 69381 4c9b4e2c5460
parent 69345 6bd63c94cf62
child 69557 e72360fef69a
equal deleted inserted replaced
69380:87644f76c997 69381:4c9b4e2c5460
    29   val language_type: bool -> T
    29   val language_type: bool -> T
    30   val language_term: bool -> T
    30   val language_term: bool -> T
    31   val language_prop: bool -> T
    31   val language_prop: bool -> T
    32   val language_ML: bool -> T
    32   val language_ML: bool -> T
    33   val language_SML: bool -> T
    33   val language_SML: bool -> T
    34   val language_haskell: bool -> T
       
    35   val language_document: bool -> T
    34   val language_document: bool -> T
    36   val language_antiquotation: T
    35   val language_antiquotation: T
    37   val language_text: bool -> T
    36   val language_text: bool -> T
    38   val language_verbatim: bool -> T
    37   val language_verbatim: bool -> T
    39   val language_latex: bool -> T
    38   val language_latex: bool -> T
   114   val ML_structureN: string
   113   val ML_structureN: string
   115   val ML_typingN: string val ML_typing: T
   114   val ML_typingN: string val ML_typing: T
   116   val ML_breakpointN: string val ML_breakpoint: int -> T
   115   val ML_breakpointN: string val ML_breakpoint: int -> T
   117   val antiquotedN: string val antiquoted: T
   116   val antiquotedN: string val antiquoted: T
   118   val antiquoteN: string val antiquote: T
   117   val antiquoteN: string val antiquote: T
       
   118   val file_typeN: string
       
   119   val antiquotationN: string
   119   val ML_antiquotationN: string
   120   val ML_antiquotationN: string
   120   val haskell_antiquotationN: string
       
   121   val document_antiquotationN: string
   121   val document_antiquotationN: string
   122   val document_antiquotation_optionN: string
   122   val document_antiquotation_optionN: string
   123   val paragraphN: string val paragraph: T
   123   val paragraphN: string val paragraph: T
   124   val text_foldN: string val text_fold: T
   124   val text_foldN: string val text_fold: T
   125   val markdown_paragraphN: string val markdown_paragraph: T
   125   val markdown_paragraphN: string val markdown_paragraph: T
   304 val language_type = language' {name = "type", symbols = true, antiquotes = false};
   304 val language_type = language' {name = "type", symbols = true, antiquotes = false};
   305 val language_term = language' {name = "term", symbols = true, antiquotes = false};
   305 val language_term = language' {name = "term", symbols = true, antiquotes = false};
   306 val language_prop = language' {name = "prop", symbols = true, antiquotes = false};
   306 val language_prop = language' {name = "prop", symbols = true, antiquotes = false};
   307 val language_ML = language' {name = "ML", symbols = false, antiquotes = true};
   307 val language_ML = language' {name = "ML", symbols = false, antiquotes = true};
   308 val language_SML = language' {name = "SML", symbols = false, antiquotes = false};
   308 val language_SML = language' {name = "SML", symbols = false, antiquotes = false};
   309 val language_haskell = language' {name = "Haskell", symbols = false, antiquotes = true};
       
   310 val language_document = language' {name = "document", symbols = false, antiquotes = true};
   309 val language_document = language' {name = "document", symbols = false, antiquotes = true};
   311 val language_antiquotation =
   310 val language_antiquotation =
   312   language {name = "antiquotation", symbols = true, antiquotes = false, delimited = true};
   311   language {name = "antiquotation", symbols = true, antiquotes = false, delimited = true};
   313 val language_text = language' {name = "text", symbols = true, antiquotes = false};
   312 val language_text = language' {name = "text", symbols = true, antiquotes = false};
   314 val language_verbatim = language' {name = "verbatim_text", symbols = true, antiquotes = false};
   313 val language_verbatim = language' {name = "verbatim_text", symbols = true, antiquotes = false};
   474 (* antiquotations *)
   473 (* antiquotations *)
   475 
   474 
   476 val (antiquotedN, antiquoted) = markup_elem "antiquoted";
   475 val (antiquotedN, antiquoted) = markup_elem "antiquoted";
   477 val (antiquoteN, antiquote) = markup_elem "antiquote";
   476 val (antiquoteN, antiquote) = markup_elem "antiquote";
   478 
   477 
       
   478 val file_typeN = "file_type";
       
   479 val antiquotationN = "antiquotation";
   479 val ML_antiquotationN = "ML_antiquotation";
   480 val ML_antiquotationN = "ML_antiquotation";
   480 val haskell_antiquotationN = "Haskell_antiquotation";
       
   481 val document_antiquotationN = "document_antiquotation";
   481 val document_antiquotationN = "document_antiquotation";
   482 val document_antiquotation_optionN = "document_antiquotation_option";
   482 val document_antiquotation_optionN = "document_antiquotation_option";
   483 
   483 
   484 
   484 
   485 (* text structure *)
   485 (* text structure *)