src/Pure/Thy/thy_output.ML
author wenzelm
Sat, 17 Oct 2015 19:26:34 +0200
changeset 61459 5f2ddeb15c06
parent 61458 987533262fc2
child 61461 77c9643a6353
permissions -rw-r--r--
clarified nesting of paragraphs: indentation is taken into account more uniformly; tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Thy/thy_output.ML
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     3
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
     4
Theory document output with antiquotations.
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     5
*)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     6
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     7
signature THY_OUTPUT =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
     8
sig
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
     9
  val display: bool Config.T
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    10
  val quotes: bool Config.T
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
    11
  val margin: int Config.T
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    12
  val indent: int Config.T
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    13
  val source: bool Config.T
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    14
  val break: bool Config.T
52042
aae07a3ff536 Thy_Output.modes as proper option;
wenzelm
parents: 52041
diff changeset
    15
  val modes: string Config.T
38766
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    16
  val add_wrapper: ((unit -> string) -> unit -> string) -> Proof.context -> Proof.context
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    17
  val add_option: binding -> (string -> Proof.context -> Proof.context) -> theory -> theory
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
    18
  val check_command: Proof.context -> xstring * Position.T -> string
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
    19
  val check_option: Proof.context -> xstring * Position.T -> string
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59809
diff changeset
    20
  val print_antiquotations: bool -> Proof.context -> unit
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    21
  val antiquotation: binding -> 'a context_parser ->
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
    22
    ({source: Token.src, state: Toplevel.state, context: Proof.context} -> 'a -> string) ->
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    23
      theory -> theory
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    24
  val boolean: string -> bool
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    25
  val integer: string -> int
61456
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
    26
  val eval_antiquote: Toplevel.state -> Antiquote.text_antiquote -> string
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
    27
  val output_text: Toplevel.state -> {markdown: bool} -> Input.source -> string
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
    28
  val present_thy: theory -> (Toplevel.transition * Toplevel.state) list -> Token.T list -> Buffer.T
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    29
  val pretty_text: Proof.context -> string -> Pretty.T
28644
e2ae4a6cf166 ThyOutput: export some auxiliary operations;
wenzelm
parents: 28427
diff changeset
    30
  val pretty_term: Proof.context -> term -> Pretty.T
e2ae4a6cf166 ThyOutput: export some auxiliary operations;
wenzelm
parents: 28427
diff changeset
    31
  val pretty_thm: Proof.context -> thm -> Pretty.T
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
    32
  val str_of_source: Token.src -> string
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    33
  val maybe_pretty_source: (Proof.context -> 'a -> Pretty.T) -> Proof.context ->
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
    34
    Token.src -> 'a list -> Pretty.T list
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
    35
  val string_of_margin: Proof.context -> Pretty.T -> string
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
    36
  val output: Proof.context -> Pretty.T list -> string
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
    37
  val verbatim_text: Proof.context -> string -> string
59064
a8bcb5a446c8 more abstract type Input.source;
wenzelm
parents: 58999
diff changeset
    38
  val old_header_command: Input.source -> Toplevel.transition -> Toplevel.transition
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
    39
  val document_command: {markdown: bool} -> (xstring * Position.T) option * Input.source ->
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
    40
    Toplevel.transition -> Toplevel.transition
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    41
end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    42
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
    43
structure Thy_Output: THY_OUTPUT =
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    44
struct
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    45
52042
aae07a3ff536 Thy_Output.modes as proper option;
wenzelm
parents: 52041
diff changeset
    46
(** options **)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    47
56438
7f6b2634d853 more source positions;
wenzelm
parents: 56334
diff changeset
    48
val display = Attrib.setup_option_bool ("thy_output_display", @{here});
7f6b2634d853 more source positions;
wenzelm
parents: 56334
diff changeset
    49
val break = Attrib.setup_option_bool ("thy_output_break", @{here});
7f6b2634d853 more source positions;
wenzelm
parents: 56334
diff changeset
    50
val quotes = Attrib.setup_option_bool ("thy_output_quotes", @{here});
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
    51
val margin = Attrib.setup_option_int ("thy_output_margin", @{here});
56438
7f6b2634d853 more source positions;
wenzelm
parents: 56334
diff changeset
    52
val indent = Attrib.setup_option_int ("thy_output_indent", @{here});
7f6b2634d853 more source positions;
wenzelm
parents: 56334
diff changeset
    53
val source = Attrib.setup_option_bool ("thy_output_source", @{here});
7f6b2634d853 more source positions;
wenzelm
parents: 56334
diff changeset
    54
val modes = Attrib.setup_option_string ("thy_output_modes", @{here});
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    55
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    56
38766
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    57
structure Wrappers = Proof_Data
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    58
(
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    59
  type T = ((unit -> string) -> unit -> string) list;
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    60
  fun init _ = [];
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    61
);
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    62
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    63
fun add_wrapper wrapper = Wrappers.map (cons wrapper);
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    64
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    65
val wrap = Wrappers.get #> fold (fn wrapper => fn f => wrapper f);
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    66
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
    67
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    68
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
    69
(** maintain global antiquotations **)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    70
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    71
structure Antiquotations = Theory_Data
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    72
(
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    73
  type T =
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
    74
    (Token.src -> Toplevel.state -> Proof.context -> string) Name_Space.table *
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    75
      (string -> Proof.context -> Proof.context) Name_Space.table;
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    76
  val empty : T =
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49847
diff changeset
    77
    (Name_Space.empty_table Markup.document_antiquotationN,
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49847
diff changeset
    78
      Name_Space.empty_table Markup.document_antiquotation_optionN);
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    79
  val extend = I;
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    80
  fun merge ((commands1, options1), (commands2, options2)) : T =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    81
    (Name_Space.merge_tables (commands1, commands2),
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    82
      Name_Space.merge_tables (options1, options2));
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    83
);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    84
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
    85
val get_antiquotations = Antiquotations.get o Proof_Context.theory_of;
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
    86
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46958
diff changeset
    87
fun add_command name cmd thy = thy
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46958
diff changeset
    88
  |> Antiquotations.map (apfst (Name_Space.define (Context.Theory thy) true (name, cmd) #> snd));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    89
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46958
diff changeset
    90
fun add_option name opt thy = thy
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46958
diff changeset
    91
  |> Antiquotations.map (apsnd (Name_Space.define (Context.Theory thy) true (name, opt) #> snd));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
    92
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
    93
fun check_command ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#1 (get_antiquotations ctxt));
26893
44d9960d3587 added defined_command, defined_option;
wenzelm
parents: 26762
diff changeset
    94
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
    95
fun check_option ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#2 (get_antiquotations ctxt));
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    96
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
    97
fun command src state ctxt =
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
    98
  let val (src', f) = Token.check_src ctxt (#1 (get_antiquotations ctxt)) src
56029
8bedca4bd5a3 clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents: 56028
diff changeset
    99
  in f src' state ctxt end;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   100
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   101
fun option ((xname, pos), s) ctxt =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   102
  let
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
   103
    val (_, opt) =
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
   104
      Name_Space.check (Context.Proof ctxt) (#2 (get_antiquotations ctxt)) (xname, pos);
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   105
  in opt s ctxt end;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   106
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59809
diff changeset
   107
fun print_antiquotations verbose ctxt =
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   108
  let
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55739
diff changeset
   109
    val (commands, options) = get_antiquotations ctxt;
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59809
diff changeset
   110
    val command_names = map #1 (Name_Space.markup_table verbose ctxt commands);
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59809
diff changeset
   111
    val option_names = map #1 (Name_Space.markup_table verbose ctxt options);
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   112
  in
50301
56b4c9afd7be print formal entities with markup;
wenzelm
parents: 50201
diff changeset
   113
    [Pretty.big_list "document antiquotations:" (map Pretty.mark_str command_names),
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   114
     Pretty.big_list "document antiquotation options:" (map Pretty.mark_str option_names)]
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   115
  end |> Pretty.writeln_chunks;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   116
56069
451d5b73f8cf simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents: 56052
diff changeset
   117
fun antiquotation name scan body =
38766
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
   118
  add_command name
8891f4520d16 Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents: 37216
diff changeset
   119
    (fn src => fn state => fn ctxt =>
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
   120
      let val (x, ctxt') = Token.syntax scan src ctxt
56069
451d5b73f8cf simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents: 56052
diff changeset
   121
      in body {source = src, state = state, context = ctxt'} x end);
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   122
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   123
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   125
(** syntax of antiquotations **)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   126
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   127
(* option values *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   128
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   129
fun boolean "" = true
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   130
  | boolean "true" = true
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   131
  | boolean "false" = false
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   132
  | boolean s = error ("Bad boolean value: " ^ quote s);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   133
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   134
fun integer s =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   135
  let
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   136
    fun int ss =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   137
      (case Library.read_int ss of (i, []) => i
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   138
      | _ => error ("Bad integer value: " ^ quote s));
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   139
  in (case Symbol.explode s of "-" :: ss => ~ (int ss) | ss => int ss) end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   140
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   141
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   142
(* outer syntax *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   143
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   144
local
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   145
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   146
val property =
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   147
  Parse.position Parse.xname -- Scan.optional (Parse.$$$ "=" |-- Parse.!!! Parse.xname) "";
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   148
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   149
val properties =
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   150
  Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.enum "," property --| Parse.$$$ "]")) [];
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   151
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   152
in
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   153
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   154
val antiq =
40800
330eb65c9469 Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents: 39689
diff changeset
   155
  Parse.!!!
56201
dd2df97b379b tuned signature;
wenzelm
parents: 56069
diff changeset
   156
    (Parse.position Parse.liberal_name -- properties -- Parse.args --| Scan.ahead Parse.eof)
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
   157
  >> (fn ((name, props), args) => (props, Token.src name args));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   158
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   159
end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   160
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   161
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   162
(* eval antiquote *)
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   163
61456
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   164
fun eval_antiquote _ (Antiquote.Text ss) = Symbol_Pos.content ss
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   165
  | eval_antiquote state (Antiquote.Antiq (ss, {range = (pos, _), ...})) =
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   166
      let
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   167
        val keywords =
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   168
          (case try Toplevel.presentation_context_of state of
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   169
            SOME ctxt => Thy_Header.get_keywords' ctxt
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   170
          | NONE =>
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   171
              error ("Unknown context -- cannot expand document antiquotations" ^
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   172
                Position.here pos));
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   173
61456
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   174
        val (opts, src) = Token.read_antiq keywords antiq (ss, pos);
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   175
        fun cmd ctxt = wrap ctxt (fn () => command src state ctxt) ();
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   176
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   177
        val preview_ctxt = fold option opts (Toplevel.presentation_context_of state);
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   178
        val print_ctxt = Context_Position.set_visible false preview_ctxt;
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   179
        val _ = cmd preview_ctxt;
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   180
        val print_modes = space_explode "," (Config.get print_ctxt modes) @ Latex.modes;
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   181
      in Print_Mode.with_modes print_modes (fn () => cmd print_ctxt) () end;
42508
e21362bf1d93 allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents: 42399
diff changeset
   182
56548
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56438
diff changeset
   183
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   184
(* output text *)
56548
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56438
diff changeset
   185
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   186
fun output_text state {markdown} source =
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   187
  let
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   188
    val pos = Input.pos_of source;
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   189
    val _ = Position.report pos (Markup.language_document (Input.is_delimited source));
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   190
    val syms = Input.source_explode source;
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   191
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   192
    val output_antiquote = eval_antiquote state #> Symbol.explode #> Latex.output_ctrl_symbols;
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   193
    val output_antiquotes = map output_antiquote #> implode;
61036
f6f2959bed67 clarified language context, e.g. relevant for symbols;
wenzelm
parents: 60100
diff changeset
   194
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   195
    fun output_blocks blocks = space_implode "\n\n" (map output_block blocks)
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   196
    and output_block (Markdown.Paragraph lines) =
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   197
          cat_lines (map (output_antiquotes o Markdown.line_source) lines)
61459
5f2ddeb15c06 clarified nesting of paragraphs: indentation is taken into account more uniformly;
wenzelm
parents: 61458
diff changeset
   198
      | output_block (Markdown.List {kind, body, ...}) =
5f2ddeb15c06 clarified nesting of paragraphs: indentation is taken into account more uniformly;
wenzelm
parents: 61458
diff changeset
   199
          let val env = Markdown.print_kind kind in
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   200
            "%\n\\begin{" ^ env ^ "}%\n" ^
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   201
            output_blocks body ^
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   202
            "%\n\\end{" ^ env ^ "}%\n"
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   203
          end;
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   204
  in
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   205
    if Toplevel.is_skipped_proof state then ""
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   206
    else if markdown andalso exists (Markdown.is_control o Symbol_Pos.symbol) syms
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   207
    then
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   208
      let
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   209
        val ants = Antiquote.read' pos syms;
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   210
        val blocks = Markdown.read_antiquotes ants;
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   211
        val _ = Position.reports (Markdown.reports blocks);
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   212
      in output_blocks blocks end
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   213
    else
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   214
      let
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   215
        val ants = Antiquote.read' pos (Symbol_Pos.trim_blanks syms);
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   216
        val _ = Position.reports (Markdown.text_reports ants);
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   217
      in output_antiquotes ants end
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   218
  end;
48918
6e5fd4585512 check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents: 47005
diff changeset
   219
6e5fd4585512 check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents: 47005
diff changeset
   220
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   221
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   222
(** present theory source **)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   223
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   224
(*NB: arranging white space around command spans is a black art*)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   225
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   226
(* presentation tokens *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   227
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   228
datatype token =
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   229
    No_Token
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   230
  | Basic_Token of Token.T
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   231
  | Markup_Token of string * Input.source
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   232
  | Markup_Env_Token of string * Input.source
61456
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   233
  | Raw_Token of Input.source;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   234
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   235
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   236
fun basic_token pred (Basic_Token tok) = pred tok
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   237
  | basic_token _ _ = false;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   238
51267
wenzelm
parents: 50592
diff changeset
   239
val improper_token = basic_token Token.is_improper;
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   240
val comment_token = basic_token Token.is_comment;
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   241
val blank_token = basic_token Token.is_blank;
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   242
val newline_token = basic_token Token.is_newline;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   243
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   244
61455
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   245
(* output token *)
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   246
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   247
fun output_token state tok =
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   248
  (case tok of
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   249
    No_Token => ""
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   250
  | Basic_Token tok => Latex.output_token tok
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   251
  | Markup_Token (cmd, source) =>
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   252
      "%\n\\isamarkup" ^ cmd ^ "{" ^ output_text state {markdown = false} source ^ "%\n}\n"
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   253
  | Markup_Env_Token (cmd, source) =>
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   254
      "%\n\\begin{isamarkup" ^ cmd ^ "}%\n" ^
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   255
      output_text state {markdown = true} source ^
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   256
      "%\n\\end{isamarkup" ^ cmd ^ "}%\n"
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   257
  | Raw_Token source =>
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   258
      "%\n" ^ output_text state {markdown = true} source ^ "\n");
61455
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   259
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   260
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   261
(* command spans *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   262
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   263
type command = string * Position.T * string list;   (*name, position, tags*)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   264
type source = (token * (string * int)) list;        (*token, markup flag, meta-comment depth*)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   265
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   266
datatype span = Span of command * (source * source * source * source) * bool;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   267
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   268
fun make_span cmd src =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   269
  let
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   270
    fun take_newline (tok :: toks) =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   271
          if newline_token (fst tok) then ([tok], toks, true)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   272
          else ([], tok :: toks, false)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   273
      | take_newline [] = ([], [], false);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   274
    val (((src_prefix, src_main), src_suffix1), (src_suffix2, src_appendix, newline)) =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   275
      src
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   276
      |> take_prefix (improper_token o fst)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   277
      ||>> take_suffix (improper_token o fst)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   278
      ||>> take_prefix (comment_token o fst)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   279
      ||> take_newline;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   280
  in Span (cmd, (src_prefix, src_main, src_suffix1 @ src_suffix2, src_appendix), newline) end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   281
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   282
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   283
(* present spans *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   284
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   285
local
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   286
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   287
fun err_bad_nesting pos =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   288
  error ("Bad nesting of commands in presentation" ^ pos);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   289
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   290
fun edge which f (x: string option, y) =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   291
  if x = y then I
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   292
  else (case which (x, y) of NONE => I | SOME txt => Buffer.add (f txt));
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   293
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   294
val begin_tag = edge #2 Latex.begin_tag;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   295
val end_tag = edge #1 Latex.end_tag;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   296
fun open_delim delim e = edge #2 Latex.begin_delim e #> delim #> edge #2 Latex.end_delim e;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   297
fun close_delim delim e = edge #1 Latex.begin_delim e #> delim #> edge #1 Latex.end_delim e;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   298
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   299
in
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   300
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58903
diff changeset
   301
fun present_span keywords span state state' (tag_stack, active_tag, newline, buffer, present_cont) =
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   302
  let
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   303
    val present = fold (fn (tok, (flag, 0)) =>
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   304
        Buffer.add (output_token state' tok)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   305
        #> Buffer.add flag
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   306
      | _ => I);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   307
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   308
    val Span ((cmd_name, cmd_pos, cmd_tags), srcs, span_newline) = span;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   309
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   310
    val (tag, tags) = tag_stack;
46924
wenzelm
parents: 46922
diff changeset
   311
    val tag' = try hd (fold (update (op =)) cmd_tags (the_list tag));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   312
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   313
    val nesting = Toplevel.level state' - Toplevel.level state;
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   314
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   315
    val active_tag' =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   316
      if is_some tag' then tag'
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   317
      else if cmd_name = "end" andalso not (Toplevel.is_toplevel state') then NONE
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   318
      else
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   319
        (case Keyword.command_tags keywords cmd_name of
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   320
          default_tag :: _ => SOME default_tag
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   321
        | [] =>
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   322
            if Keyword.is_vacuous keywords cmd_name andalso Toplevel.is_proof state
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   323
            then active_tag
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   324
            else NONE);
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   325
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   326
    val edge = (active_tag, active_tag');
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   327
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   328
    val newline' =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   329
      if is_none active_tag' then span_newline else newline;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   330
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   331
    val tag_stack' =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   332
      if nesting = 0 andalso not (Toplevel.is_proof state) then tag_stack
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   333
      else if nesting >= 0 then (tag', replicate nesting tag @ tags)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   334
      else
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   335
        (case drop (~ nesting - 1) tags of
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   336
          tg :: tgs => (tg, tgs)
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 48927
diff changeset
   337
        | [] => err_bad_nesting (Position.here cmd_pos));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   338
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   339
    val buffer' =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   340
      buffer
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   341
      |> end_tag edge
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   342
      |> close_delim (fst present_cont) edge
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   343
      |> snd present_cont
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   344
      |> open_delim (present (#1 srcs)) edge
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   345
      |> begin_tag edge
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   346
      |> present (#2 srcs);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   347
    val present_cont' =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   348
      if newline then (present (#3 srcs), present (#4 srcs))
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   349
      else (I, present (#3 srcs) #> present (#4 srcs));
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   350
  in (tag_stack', active_tag', newline', buffer', present_cont') end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   351
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   352
fun present_trailer ((_, tags), active_tag, _, buffer, present_cont) =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   353
  if not (null tags) then err_bad_nesting " at end of theory"
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   354
  else
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   355
    buffer
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   356
    |> end_tag (active_tag, NONE)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   357
    |> close_delim (fst present_cont) (active_tag, NONE)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   358
    |> snd present_cont;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   359
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   360
end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   361
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   362
28427
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   363
(* present_thy *)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   364
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   365
local
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   366
61455
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   367
val markup_true = "\\isamarkuptrue%\n";
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   368
val markup_false = "\\isamarkupfalse%\n";
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   369
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   370
val space_proper =
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   371
  Scan.one Token.is_blank -- Scan.many Token.is_comment -- Scan.one Token.is_proper;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   372
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   373
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   374
val improper = Scan.many is_improper;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   375
val improper_end = Scan.repeat (Scan.unless space_proper (Scan.one is_improper));
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   376
val blank_end = Scan.repeat (Scan.unless space_proper (Scan.one Token.is_blank));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   377
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   378
val opt_newline = Scan.option (Scan.one Token.is_newline);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   379
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   380
val ignore =
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   381
  Scan.depend (fn d => opt_newline |-- Scan.one Token.is_begin_ignore
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   382
    >> pair (d + 1)) ||
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36950
diff changeset
   383
  Scan.depend (fn d => Scan.one Token.is_end_ignore --|
43947
9b00f09f7721 defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents: 43564
diff changeset
   384
    (if d = 0 then Scan.fail_with (K (fn () => "Bad nesting of meta-comments")) else opt_newline)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   385
    >> pair (d - 1));
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   386
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   387
val tag = (improper -- Parse.$$$ "%" -- improper) |-- Parse.!!! (Parse.tag_name --| blank_end);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   388
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   389
val locale =
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   390
  Scan.option ((Parse.$$$ "(" -- improper -- Parse.$$$ "in") |--
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   391
    Parse.!!! (improper |-- Parse.xname --| (improper -- Parse.$$$ ")")));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   392
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   393
in
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   394
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   395
fun present_thy thy command_results toks =
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   396
  let
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   397
    val keywords = Thy_Header.get_keywords thy;
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   398
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   399
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   400
    (* tokens *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   401
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   402
    val ignored = Scan.state --| ignore
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   403
      >> (fn d => (NONE, (No_Token, ("", d))));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   404
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   405
    fun markup pred mk flag = Scan.peek (fn d =>
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36745
diff changeset
   406
      improper |--
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   407
        Parse.position (Scan.one (fn tok =>
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   408
          Token.is_command tok andalso pred keywords (Token.content_of tok))) --
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   409
      Scan.repeat tag --
51627
589daaf48dba tuned signature -- agree with markup terminology;
wenzelm
parents: 51626
diff changeset
   410
      Parse.!!!! ((improper -- locale -- improper) |-- Parse.document_source --| improper_end)
59064
a8bcb5a446c8 more abstract type Input.source;
wenzelm
parents: 58999
diff changeset
   411
      >> (fn (((tok, pos'), tags), source) =>
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   412
        let val name = Token.content_of tok
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   413
        in (SOME (name, pos', tags), (mk (name, source), (flag, d))) end));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   414
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   415
    val command = Scan.peek (fn d =>
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59924
diff changeset
   416
      Scan.optional (Scan.one Token.is_command_modifier -- improper >> op ::) [] --
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   417
      Scan.one Token.is_command -- Scan.repeat tag
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59924
diff changeset
   418
      >> (fn ((cmd_mod, cmd), tags) =>
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59924
diff changeset
   419
        map (fn tok => (NONE, (Basic_Token tok, ("", d)))) cmd_mod @
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   420
          [(SOME (Token.content_of cmd, Token.pos_of cmd, tags),
61455
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   421
            (Basic_Token cmd, (markup_false, d)))]));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   422
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   423
    val cmt = Scan.peek (fn d =>
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   424
      Parse.$$$ "--" |-- Parse.!!!! (improper |-- Parse.document_source) >>
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   425
        (fn source => (NONE, (Markup_Token ("cmt", source), ("", d)))));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   426
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   427
    val other = Scan.peek (fn d =>
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   428
       Parse.not_eof >> (fn tok => (NONE, (Basic_Token tok, ("", d)))));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   429
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   430
    val tokens =
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   431
      (ignored ||
61455
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   432
        markup Keyword.is_document_heading Markup_Token markup_true ||
0e4c257358cf clarified modules;
wenzelm
parents: 61435
diff changeset
   433
        markup Keyword.is_document_body Markup_Env_Token markup_true ||
61456
b521b8b400f7 trim_blanks after read, before eval;
wenzelm
parents: 61455
diff changeset
   434
        markup Keyword.is_document_raw (Raw_Token o #2) "") >> single ||
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   435
      command ||
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   436
      (cmt || other) >> single;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   437
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   438
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   439
    (* spans *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   440
59065
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   441
    val is_eof = fn (_, (Basic_Token x, _)) => Token.is_eof x | _ => false;
8ce02aafc363 tuned signature -- prefer Input.source;
wenzelm
parents: 59064
diff changeset
   442
    val stopper = Scan.stopper (K (NONE, (Basic_Token Token.eof, ("", 0)))) is_eof;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   443
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   444
    val cmd = Scan.one (is_some o fst);
27732
8dbf5761a24a abstract type Scan.stopper;
wenzelm
parents: 27566
diff changeset
   445
    val non_cmd = Scan.one (is_none o fst andf not o is_eof) >> #2;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   446
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   447
    val comments = Scan.many (comment_token o fst o snd);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   448
    val blank = Scan.one (blank_token o fst o snd);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   449
    val newline = Scan.one (newline_token o fst o snd);
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   450
    val before_cmd =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   451
      Scan.option (newline -- comments) --
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   452
      Scan.option (newline -- comments) --
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   453
      Scan.option (blank -- comments) -- cmd;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   454
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   455
    val span =
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   456
      Scan.repeat non_cmd -- cmd --
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   457
        Scan.repeat (Scan.unless before_cmd non_cmd) --
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   458
        Scan.option (newline >> (single o snd))
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   459
      >> (fn (((toks1, (cmd, tok2)), toks3), tok4) =>
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   460
          make_span (the cmd) (toks1 @ (tok2 :: (toks3 @ the_default [] tok4))));
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   461
57080
0e5fa27d3293 strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents: 56548
diff changeset
   462
    val spans = toks
0e5fa27d3293 strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents: 56548
diff changeset
   463
      |> take_suffix Token.is_space |> #1
0e5fa27d3293 strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents: 56548
diff changeset
   464
      |> Source.of_list
59924
801b979ec0c2 more general notion of command span: command keyword not necessarily at start;
wenzelm
parents: 59917
diff changeset
   465
      |> Source.source' 0 Token.stopper (Scan.error (Scan.bulk tokens >> flat))
58864
505a8150368a recover via scanner;
wenzelm
parents: 58861
diff changeset
   466
      |> Source.source stopper (Scan.error (Scan.bulk span))
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   467
      |> Source.exhaust;
28427
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   468
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   469
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   470
    (* present commands *)
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   471
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   472
    fun present_command tr span st st' =
58923
cb9b69cca999 more explicit Keyword.keywords;
wenzelm
parents: 58903
diff changeset
   473
      Toplevel.setmp_thread_position tr (present_span keywords span st st');
28427
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   474
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   475
    fun present _ [] = I
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   476
      | present st (((tr, st'), span) :: rest) = present_command tr span st st' #> present st' rest;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   477
  in
28427
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   478
    if length command_results = length spans then
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   479
      ((NONE, []), NONE, true, Buffer.empty, (I, I))
28427
cc9f7d99fb73 turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents: 28273
diff changeset
   480
      |> present Toplevel.toplevel (command_results ~~ spans)
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   481
      |> present_trailer
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   482
    else error "Messed-up outer syntax for presentation"
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   483
  end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   484
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   485
end;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   486
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   487
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   488
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   489
(** setup default output **)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   490
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   491
(* options *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   492
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53167
diff changeset
   493
val _ = Theory.setup
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   494
 (add_option @{binding show_types} (Config.put show_types o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   495
  add_option @{binding show_sorts} (Config.put show_sorts o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   496
  add_option @{binding show_structs} (Config.put show_structs o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   497
  add_option @{binding show_question_marks} (Config.put show_question_marks o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   498
  add_option @{binding show_abbrevs} (Config.put show_abbrevs o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   499
  add_option @{binding names_long} (Config.put Name_Space.names_long o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   500
  add_option @{binding names_short} (Config.put Name_Space.names_short o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   501
  add_option @{binding names_unique} (Config.put Name_Space.names_unique o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   502
  add_option @{binding eta_contract} (Config.put Syntax_Trans.eta_contract o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   503
  add_option @{binding display} (Config.put display o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   504
  add_option @{binding break} (Config.put break o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   505
  add_option @{binding quotes} (Config.put quotes o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   506
  add_option @{binding mode} (add_wrapper o Print_Mode.with_modes o single) #>
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   507
  add_option @{binding margin} (Config.put margin o integer) #>
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   508
  add_option @{binding indent} (Config.put indent o integer) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   509
  add_option @{binding source} (Config.put source o boolean) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   510
  add_option @{binding goals_limit} (Config.put Goal_Display.goals_limit o integer));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   511
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   512
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   513
(* basic pretty printing *)
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   514
61435
636bb75e7683 tuned signature (cf. XML.trim_blanks);
wenzelm
parents: 61036
diff changeset
   515
fun perhaps_trim ctxt =
636bb75e7683 tuned signature (cf. XML.trim_blanks);
wenzelm
parents: 61036
diff changeset
   516
  not (Config.get ctxt display) ? Symbol.trim_blanks;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   517
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   518
fun pretty_text ctxt =
61435
636bb75e7683 tuned signature (cf. XML.trim_blanks);
wenzelm
parents: 61036
diff changeset
   519
  Pretty.chunks o map Pretty.str o map (perhaps_trim ctxt) o split_lines;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   520
55829
b7bdea5336dd tuned signature;
wenzelm
parents: 55828
diff changeset
   521
fun pretty_text_report ctxt source =
59066
45ab32a542fe tuned signature;
wenzelm
parents: 59065
diff changeset
   522
 (Context_Position.report ctxt (Input.pos_of source)
45ab32a542fe tuned signature;
wenzelm
parents: 59065
diff changeset
   523
    (Markup.language_text (Input.is_delimited source));
45ab32a542fe tuned signature;
wenzelm
parents: 59065
diff changeset
   524
  pretty_text ctxt (Input.source_content source));
55561
88c40aff747d more markup;
wenzelm
parents: 55550
diff changeset
   525
26710
f79aa228c582 pretty_term: no revert_skolems here, but auto_fixes (token translations will do the rest);
wenzelm
parents: 26455
diff changeset
   526
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t;
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24680
diff changeset
   527
32898
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   528
fun pretty_thm ctxt = pretty_term ctxt o Thm.full_prop_of;
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   529
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   530
fun pretty_term_style ctxt (style, t) =
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   531
  pretty_term ctxt (style t);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   532
32898
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   533
fun pretty_thm_style ctxt (style, th) =
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   534
  pretty_term ctxt (style (Thm.full_prop_of th));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   535
32898
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   536
fun pretty_term_typ ctxt (style, t) =
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   537
  let val t' = style t
39288
f1ae2493d93f eliminated aliases of Type.constraint;
wenzelm
parents: 39134
diff changeset
   538
  in pretty_term ctxt (Type.constraint (Term.fastype_of t') t') end;
32898
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   539
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   540
fun pretty_term_typeof ctxt (style, t) =
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   541
  Syntax.pretty_typ ctxt (Term.fastype_of (style t));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   542
25373
ccbf65080fdf @{const}: improved ProofContext.read_const does the job;
wenzelm
parents: 25241
diff changeset
   543
fun pretty_const ctxt c =
ccbf65080fdf @{const}: improved ProofContext.read_const does the job;
wenzelm
parents: 25241
diff changeset
   544
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   545
    val t = Const (c, Consts.type_scheme (Proof_Context.consts_of ctxt) c)
25373
ccbf65080fdf @{const}: improved ProofContext.read_const does the job;
wenzelm
parents: 25241
diff changeset
   546
      handle TYPE (msg, _, _) => error msg;
ccbf65080fdf @{const}: improved ProofContext.read_const does the job;
wenzelm
parents: 25241
diff changeset
   547
    val ([t'], _) = Variable.import_terms true [t] ctxt;
ccbf65080fdf @{const}: improved ProofContext.read_const does the job;
wenzelm
parents: 25241
diff changeset
   548
  in pretty_term ctxt t' end;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   549
25407
2859cf34aaf0 abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents: 25373
diff changeset
   550
fun pretty_abbrev ctxt s =
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   551
  let
42399
95b17b4901b5 pretty_abbrev: read abbreviation more directly;
wenzelm
parents: 42360
diff changeset
   552
    val t = Syntax.read_term (Proof_Context.set_mode Proof_Context.mode_abbrev ctxt) s;
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24680
diff changeset
   553
    fun err () = error ("Abbreviated constant expected: " ^ Syntax.string_of_term ctxt t);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   554
    val (head, args) = Term.strip_comb t;
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   555
    val (c, T) = Term.dest_Const head handle TERM _ => err ();
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   556
    val (U, u) = Consts.the_abbreviation (Proof_Context.consts_of ctxt) c
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   557
      handle TYPE _ => err ();
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   558
    val t' = Term.betapplys (Envir.expand_atom T (U, u), args);
32898
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   559
    val eq = Logic.mk_equals (t, t');
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   560
    val ctxt' = Variable.auto_fixes eq ctxt;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   561
  in Proof_Context.pretty_term_abbrev ctxt' eq end;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   562
39305
d4fa19eb0822 'class' and 'type' are now antiquoations by default
haftmann
parents: 39134
diff changeset
   563
fun pretty_class ctxt =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   564
  Pretty.str o Proof_Context.extern_class ctxt o Proof_Context.read_class ctxt;
39305
d4fa19eb0822 'class' and 'type' are now antiquoations by default
haftmann
parents: 39134
diff changeset
   565
39309
74469faa27ca type antiquotation: allow arbitrary type abbreviations, but fail with user-space exception on bad input
haftmann
parents: 39308
diff changeset
   566
fun pretty_type ctxt s =
56002
2028467b4df4 tuned signature;
wenzelm
parents: 55954
diff changeset
   567
  let val Type (name, _) = Proof_Context.read_type_name {proper = true, strict = false} ctxt s
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   568
  in Pretty.str (Proof_Context.extern_type ctxt name) end;
39305
d4fa19eb0822 'class' and 'type' are now antiquoations by default
haftmann
parents: 39134
diff changeset
   569
33388
d64545e6cba5 modernized structure Proof_Syntax;
wenzelm
parents: 33095
diff changeset
   570
fun pretty_prf full ctxt = Proof_Syntax.pretty_proof_of ctxt full;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   571
60100
2ce2e0358e91 clarified document antiquotation: same check as in ML antiquotation;
wenzelm
parents: 60094
diff changeset
   572
fun pretty_theory ctxt (name, pos) = (Theory.check ctxt (name, pos); Pretty.str name);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   573
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   574
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   575
(* default output *)
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   576
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
   577
val str_of_source = space_implode " " o Token.unparse_src;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   578
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   579
fun maybe_pretty_source pretty ctxt src xs =
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   580
  map (pretty ctxt) xs  (*always pretty in order to exhibit errors!*)
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   581
  |> (if Config.get ctxt source then K [pretty_text ctxt (str_of_source src)] else I);
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   582
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   583
fun string_of_margin ctxt = Pretty.string_of_margin (Config.get ctxt margin);
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   584
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   585
fun output ctxt prts =
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   586
  prts
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   587
  |> Config.get ctxt quotes ? map Pretty.quote
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   588
  |> (if Config.get ctxt display then
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   589
        map (Pretty.indent (Config.get ctxt indent) #> string_of_margin ctxt #> Output.output)
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   590
        #> space_implode "\\isasep\\isanewline%\n"
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   591
        #> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}"
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   592
      else
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   593
        map ((if Config.get ctxt break then string_of_margin ctxt else Pretty.str_of) #>
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   594
          Output.output)
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   595
        #> space_implode "\\isasep\\isanewline%\n"
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   596
        #> enclose "\\isa{" "}");
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   597
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   598
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   599
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   600
(** concrete antiquotations **)
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   601
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   602
(* basic entities *)
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   603
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   604
local
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   605
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   606
fun basic_entities name scan pretty =
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   607
  antiquotation name scan (fn {source, context, ...} =>
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   608
    output context o maybe_pretty_source pretty context source);
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   609
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   610
fun basic_entities_style name scan pretty =
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   611
  antiquotation name scan (fn {source, context, ...} => fn (style, xs) =>
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   612
    output context
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 38766
diff changeset
   613
      (maybe_pretty_source (fn ctxt => fn x => pretty ctxt (style, x)) context source xs));
32890
77df12652210 generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents: 32738
diff changeset
   614
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   615
fun basic_entity name scan = basic_entities name (scan >> single);
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   616
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   617
in
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   618
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53167
diff changeset
   619
val _ = Theory.setup
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   620
 (basic_entities_style @{binding thm} (Term_Style.parse -- Attrib.thms) pretty_thm_style #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   621
  basic_entity @{binding prop} (Term_Style.parse -- Args.prop) pretty_term_style #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   622
  basic_entity @{binding term} (Term_Style.parse -- Args.term) pretty_term_style #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   623
  basic_entity @{binding term_type} (Term_Style.parse -- Args.term) pretty_term_typ #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   624
  basic_entity @{binding typeof} (Term_Style.parse -- Args.term) pretty_term_typeof #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   625
  basic_entity @{binding const} (Args.const {proper = true, strict = false}) pretty_const #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   626
  basic_entity @{binding abbrev} (Scan.lift Args.name_inner_syntax) pretty_abbrev #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   627
  basic_entity @{binding typ} Args.typ_abbrev Syntax.pretty_typ #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   628
  basic_entity @{binding class} (Scan.lift Args.name_inner_syntax) pretty_class #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   629
  basic_entity @{binding type} (Scan.lift Args.name) pretty_type #>
59809
87641097d0f3 tuned signature;
wenzelm
parents: 59175
diff changeset
   630
  basic_entity @{binding text} (Scan.lift Args.text_input) pretty_text_report #>
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   631
  basic_entities @{binding prf} Attrib.thms (pretty_prf false) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   632
  basic_entities @{binding full_prf} Attrib.thms (pretty_prf true) #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   633
  basic_entity @{binding theory} (Scan.lift (Parse.position Args.name)) pretty_theory);
32898
e871d897969c term styles also cover antiquotations term_type and typeof
haftmann
parents: 32890
diff changeset
   634
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   635
end;
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   636
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   637
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   638
(* goal state *)
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   639
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   640
local
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   641
49847
ed5080c03165 some attempts to unify/simplify pretty_goal;
wenzelm
parents: 49321
diff changeset
   642
fun goal_state name main = antiquotation name (Scan.succeed ())
59175
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   643
  (fn {state, context = ctxt, ...} => fn () =>
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   644
    output ctxt
bf465f335e85 system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents: 59067
diff changeset
   645
      [Goal_Display.pretty_goal
60094
96a4765ba7d1 explicit error for Toplevel.proof_of;
wenzelm
parents: 59939
diff changeset
   646
        (Config.put Goal_Display.show_main_goal main ctxt)
96a4765ba7d1 explicit error for Toplevel.proof_of;
wenzelm
parents: 59939
diff changeset
   647
        (#goal (Proof.goal (Toplevel.proof_of state)))]);
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   648
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   649
in
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   650
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53167
diff changeset
   651
val _ = Theory.setup
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   652
 (goal_state @{binding goals} true #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   653
  goal_state @{binding subgoals} false);
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   654
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   655
end;
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   656
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   657
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   658
(* embedded lemma *)
27522
b819d3b263a0 @{lemma}: allow terminal method;
wenzelm
parents: 27381
diff changeset
   659
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53167
diff changeset
   660
val _ = Theory.setup
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   661
  (antiquotation @{binding lemma}
56029
8bedca4bd5a3 clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents: 56028
diff changeset
   662
    (Scan.lift (Scan.ahead Parse.not_eof) -- Args.prop --
58866
f81e11391562 clarified syntax -- avoid overlap with command category;
wenzelm
parents: 58864
diff changeset
   663
      Scan.lift (Parse.position (Parse.reserved "by") -- Method.parse -- Scan.option Method.parse))
56029
8bedca4bd5a3 clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents: 56028
diff changeset
   664
    (fn {source, context = ctxt, ...} => fn ((prop_token, prop), (((_, by_pos), m1), m2)) =>
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   665
      let
58011
bc6bced136e5 tuned signature -- moved type src to Token, without aliases;
wenzelm
parents: 57080
diff changeset
   666
        val prop_src = Token.src (Token.name_of_src source) [prop_token];
55795
2d4cf0005a02 more explicit method reports;
wenzelm
parents: 55761
diff changeset
   667
2d4cf0005a02 more explicit method reports;
wenzelm
parents: 55761
diff changeset
   668
        val reports = (by_pos, Markup.keyword1) :: maps Method.reports_of (m1 :: the_list m2);
2d4cf0005a02 more explicit method reports;
wenzelm
parents: 55761
diff changeset
   669
        val _ = Context_Position.reports ctxt reports;
2d4cf0005a02 more explicit method reports;
wenzelm
parents: 55761
diff changeset
   670
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   671
        (* FIXME check proof!? *)
55739
d8270c17b5be more markup;
wenzelm
parents: 55614
diff changeset
   672
        val _ = ctxt
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 42669
diff changeset
   673
          |> Proof.theorem NONE (K I) [[(prop, [])]]
55795
2d4cf0005a02 more explicit method reports;
wenzelm
parents: 55761
diff changeset
   674
          |> Proof.global_terminal_proof (m1, m2);
55739
d8270c17b5be more markup;
wenzelm
parents: 55614
diff changeset
   675
      in output ctxt (maybe_pretty_source pretty_term ctxt prop_src [prop]) end));
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   676
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   677
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   678
(* verbatim text *)
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   679
58741
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   680
fun verbatim_text ctxt =
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   681
  if Config.get ctxt display then
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   682
    Latex.output_ascii #>
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   683
    enclose "\\begin{isabellett}%\n" "%\n\\end{isabellett}"
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   684
  else
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   685
    split_lines #>
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   686
    map (Latex.output_ascii #> enclose "\\isatt{" "}") #>
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   687
    space_implode "\\isasep\\isanewline%\n";
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   688
58741
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   689
val _ =
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   690
  Theory.setup
6e7b009e6d94 clarified verbatim line breaks, e.g. relevant for Implementation mldecls;
wenzelm
parents: 58716
diff changeset
   691
    (antiquotation @{binding verbatim} (Scan.lift Args.text) (verbatim_text o #context));
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   692
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   693
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   694
(* ML text *)
40801
6cfacec435e6 added document antiquotation @{file};
wenzelm
parents: 40800
diff changeset
   695
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   696
local
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   697
59809
87641097d0f3 tuned signature;
wenzelm
parents: 59175
diff changeset
   698
fun ml_text name ml = antiquotation name (Scan.lift Args.text_input)
58716
23a380cc45f4 official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents: 58069
diff changeset
   699
  (fn {context = ctxt, ...} => fn source =>
59064
a8bcb5a446c8 more abstract type Input.source;
wenzelm
parents: 58999
diff changeset
   700
   (ML_Context.eval_in (SOME ctxt) ML_Compiler.flags (Input.pos_of source) (ml source);
59066
45ab32a542fe tuned signature;
wenzelm
parents: 59065
diff changeset
   701
    verbatim_text ctxt (Input.source_content source)));
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   702
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55796
diff changeset
   703
fun ml_enclose bg en source =
59067
dd8ec9138112 tuned signature;
wenzelm
parents: 59066
diff changeset
   704
  ML_Lex.read bg @ ML_Lex.read_source false source @ ML_Lex.read en;
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   705
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   706
in
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   707
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53167
diff changeset
   708
val _ = Theory.setup
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   709
 (ml_text @{binding ML} (ml_enclose "fn _ => (" ");") #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   710
  ml_text @{binding ML_op} (ml_enclose "fn _ => (op " ");") #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   711
  ml_text @{binding ML_type} (ml_enclose "val _ = NONE : (" ") option;") #>
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   712
  ml_text @{binding ML_structure}
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53167
diff changeset
   713
    (ml_enclose "functor XXX() = struct structure XX = " " end;") #>
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   714
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   715
  ml_text @{binding ML_functor}   (* FIXME formal treatment of functor name (!?) *)
55829
b7bdea5336dd tuned signature;
wenzelm
parents: 55828
diff changeset
   716
    (fn source =>
59067
dd8ec9138112 tuned signature;
wenzelm
parents: 59066
diff changeset
   717
      ML_Lex.read ("ML_Env.check_functor " ^
59066
45ab32a542fe tuned signature;
wenzelm
parents: 59065
diff changeset
   718
        ML_Syntax.print_string (Input.source_content source))) #>
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 37146
diff changeset
   719
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   720
  ml_text @{binding ML_text} (K []));
22124
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   721
27b674312b2f renamed Isar/isar_output.ML to Thy/thy_output.ML;
wenzelm
parents:
diff changeset
   722
end;
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   723
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53171
diff changeset
   724
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53171
diff changeset
   725
(* URLs *)
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53171
diff changeset
   726
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53171
diff changeset
   727
val _ = Theory.setup
56204
f70e69208a8c more antiquotations;
wenzelm
parents: 56201
diff changeset
   728
  (antiquotation @{binding url} (Scan.lift (Parse.position Parse.name))
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53171
diff changeset
   729
    (fn {context = ctxt, ...} => fn (name, pos) =>
56034
1c59b555ac4a some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents: 56032
diff changeset
   730
      (Context_Position.reports ctxt [(pos, Markup.language_path), (pos, Markup.url name)];
1c59b555ac4a some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents: 56032
diff changeset
   731
       enclose "\\url{" "}" name)));
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53171
diff changeset
   732
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   733
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   734
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   735
(** document commands **)
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   736
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   737
fun old_header_command txt =
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   738
  Toplevel.keep (fn state =>
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   739
    if Toplevel.is_toplevel state then
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   740
     (legacy_feature "Obsolete 'header' command -- use 'chapter', 'section' etc. instead";
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   741
      ignore (output_text state {markdown = false} txt))
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   742
    else raise Toplevel.UNDEF);
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   743
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   744
fun document_command markdown (loc, txt) =
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   745
  Toplevel.keep (fn state =>
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   746
    (case loc of
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   747
      NONE => ignore (output_text state markdown txt)
58999
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   748
    | SOME (_, pos) =>
ed09ae4ea2d8 uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents: 58992
diff changeset
   749
        error ("Illegal target specification -- not a theory context" ^ Position.here pos))) o
61457
3e21699bb83b clarified Antiquote.antiq_reports;
wenzelm
parents: 61456
diff changeset
   750
  Toplevel.present_local_theory loc (fn state => ignore (output_text state markdown txt));
58928
23d0ffd48006 plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents: 58923
diff changeset
   751
30390
ad591ee76c78 simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents: 30381
diff changeset
   752
end;