author | wenzelm |
Thu, 28 Aug 2014 15:47:26 +0200 | |
changeset 58069 | 0255436b3d85 |
parent 58011 | bc6bced136e5 |
child 58716 | 23a380cc45f4 |
permissions | -rw-r--r-- |
22124 | 1 |
(* Title: Pure/Thy/thy_output.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
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 | 5 |
*) |
6 |
||
7 |
signature THY_OUTPUT = |
|
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 |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
11 |
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
|
12 |
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
|
13 |
val break: bool Config.T |
52042 | 14 |
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
|
15 |
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
|
16 |
val add_option: binding -> (string -> Proof.context -> Proof.context) -> theory -> theory |
55743 | 17 |
val check_command: Proof.context -> xstring * Position.T -> string |
18 |
val check_option: Proof.context -> xstring * Position.T -> string |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
19 |
val print_antiquotations: Proof.context -> unit |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
20 |
val antiquotation: binding -> 'a context_parser -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
21 |
({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
|
22 |
theory -> theory |
22124 | 23 |
val boolean: string -> bool |
24 |
val integer: string -> int |
|
25 |
datatype markup = Markup | MarkupEnv | Verbatim |
|
55526 | 26 |
val eval_antiq: Scan.lexicon -> Toplevel.state -> Antiquote.antiq -> string |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
27 |
val check_text: Symbol_Pos.source -> Toplevel.state -> unit |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
28 |
val present_thy: Scan.lexicon -> (string -> string list) -> (markup -> string -> bool) -> |
46811
03a2dc9e0624
clarified command span: include trailing whitespace/comments and thus reduce number of ignored spans with associated transactions and states (factor 2);
wenzelm
parents:
46261
diff
changeset
|
29 |
(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
|
30 |
val pretty_text: Proof.context -> string -> Pretty.T |
28644 | 31 |
val pretty_term: Proof.context -> term -> Pretty.T |
32 |
val pretty_thm: Proof.context -> thm -> Pretty.T |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
33 |
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
|
34 |
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
|
35 |
Token.src -> 'a list -> Pretty.T list |
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 |
49244
fb669aff821e
formal markup for @{file} (for hyperlinks etc.) -- interpret path wrt. master directory as usual;
wenzelm
parents:
48992
diff
changeset
|
37 |
val verb_text: string -> string |
22124 | 38 |
end; |
39 |
||
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
40 |
structure Thy_Output: THY_OUTPUT = |
22124 | 41 |
struct |
42 |
||
52042 | 43 |
(** options **) |
22124 | 44 |
|
56438 | 45 |
val display = Attrib.setup_option_bool ("thy_output_display", @{here}); |
46 |
val break = Attrib.setup_option_bool ("thy_output_break", @{here}); |
|
47 |
val quotes = Attrib.setup_option_bool ("thy_output_quotes", @{here}); |
|
48 |
val indent = Attrib.setup_option_int ("thy_output_indent", @{here}); |
|
49 |
val source = Attrib.setup_option_bool ("thy_output_source", @{here}); |
|
50 |
val modes = Attrib.setup_option_string ("thy_output_modes", @{here}); |
|
22124 | 51 |
|
52 |
||
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
|
53 |
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
|
54 |
( |
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
|
55 |
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
|
56 |
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
|
57 |
); |
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 |
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
|
60 |
|
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 |
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
|
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 |
|
22124 | 64 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
65 |
(** maintain global antiquotations **) |
22124 | 66 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
67 |
structure Antiquotations = Theory_Data |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
68 |
( |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
69 |
type T = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
70 |
(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
|
71 |
(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
|
72 |
val empty : T = |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49847
diff
changeset
|
73 |
(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
|
74 |
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
|
75 |
val extend = I; |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
76 |
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
|
77 |
(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
|
78 |
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
|
79 |
); |
22124 | 80 |
|
55743 | 81 |
val get_antiquotations = Antiquotations.get o Proof_Context.theory_of; |
82 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
83 |
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
|
84 |
|> Antiquotations.map (apfst (Name_Space.define (Context.Theory thy) true (name, cmd) #> snd)); |
22124 | 85 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
86 |
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
|
87 |
|> Antiquotations.map (apsnd (Name_Space.define (Context.Theory thy) true (name, opt) #> snd)); |
22124 | 88 |
|
55743 | 89 |
fun check_command ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#1 (get_antiquotations ctxt)); |
26893 | 90 |
|
55743 | 91 |
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
|
92 |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
93 |
fun command src state ctxt = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
94 |
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
|
95 |
in f src' state ctxt end; |
22124 | 96 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
97 |
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
|
98 |
let |
55743 | 99 |
val (_, opt) = |
100 |
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
|
101 |
in opt s ctxt end; |
22124 | 102 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
103 |
fun print_antiquotations ctxt = |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
104 |
let |
55743 | 105 |
val (commands, options) = get_antiquotations ctxt; |
56052 | 106 |
val command_names = map #1 (Name_Space.markup_table ctxt commands); |
107 |
val option_names = map #1 (Name_Space.markup_table ctxt options); |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
108 |
in |
50301 | 109 |
[Pretty.big_list "document antiquotations:" (map Pretty.mark_str command_names), |
110 |
Pretty.big_list "document antiquotation options:" (map Pretty.mark_str option_names)] |
|
56334
6b3739fee456
some shortcuts for chunks, which sometimes avoid bulky string output;
wenzelm
parents:
56304
diff
changeset
|
111 |
|> Pretty.writeln_chunks |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
112 |
end; |
22124 | 113 |
|
56069
451d5b73f8cf
simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents:
56052
diff
changeset
|
114 |
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
|
115 |
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
|
116 |
(fn src => fn state => fn ctxt => |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
117 |
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
|
118 |
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
|
119 |
|
22124 | 120 |
|
121 |
||
122 |
(** syntax of antiquotations **) |
|
123 |
||
124 |
(* option values *) |
|
125 |
||
126 |
fun boolean "" = true |
|
127 |
| boolean "true" = true |
|
128 |
| boolean "false" = false |
|
129 |
| boolean s = error ("Bad boolean value: " ^ quote s); |
|
130 |
||
131 |
fun integer s = |
|
132 |
let |
|
133 |
fun int ss = |
|
134 |
(case Library.read_int ss of (i, []) => i |
|
135 |
| _ => error ("Bad integer value: " ^ quote s)); |
|
136 |
in (case Symbol.explode s of "-" :: ss => ~ (int ss) | ss => int ss) end; |
|
137 |
||
138 |
||
139 |
(* outer syntax *) |
|
140 |
||
141 |
local |
|
142 |
||
36950 | 143 |
val property = |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
144 |
Parse.position Parse.xname -- Scan.optional (Parse.$$$ "=" |-- Parse.!!! Parse.xname) ""; |
36950 | 145 |
|
146 |
val properties = |
|
147 |
Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.enum "," property --| Parse.$$$ "]")) []; |
|
22124 | 148 |
|
149 |
in |
|
150 |
||
36950 | 151 |
val antiq = |
40800
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
39689
diff
changeset
|
152 |
Parse.!!! |
56201 | 153 |
(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
|
154 |
>> (fn ((name, props), args) => (props, Token.src name args)); |
22124 | 155 |
|
156 |
end; |
|
157 |
||
158 |
||
56548 | 159 |
(* eval_antiq *) |
22124 | 160 |
|
55526 | 161 |
fun eval_antiq lex state ((ss, {range = (pos, _), ...}): Antiquote.antiq) = |
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
162 |
let |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
163 |
val (opts, src) = Token.read_antiq lex antiq (ss, pos); |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
164 |
fun cmd ctxt = wrap ctxt (fn () => command src state ctxt) (); |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
165 |
val preview_ctxt = fold option opts (Toplevel.presentation_context_of state); |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
166 |
val print_ctxt = Context_Position.set_visible false preview_ctxt; |
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
167 |
val _ = cmd preview_ctxt; |
52042 | 168 |
val print_modes = space_explode "," (Config.get print_ctxt modes) @ Latex.modes; |
169 |
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
|
170 |
|
56548 | 171 |
|
172 |
(* check_text *) |
|
173 |
||
30367 | 174 |
fun eval_antiquote lex state (txt, pos) = |
22124 | 175 |
let |
56548 | 176 |
fun words (Antiquote.Text ss) = [(#1 (Symbol_Pos.range ss), Markup.words)] |
177 |
| words (Antiquote.Antiq _) = []; |
|
178 |
||
30589 | 179 |
fun expand (Antiquote.Text ss) = Symbol_Pos.content ss |
53167 | 180 |
| expand (Antiquote.Antiq antiq) = eval_antiq lex state antiq; |
56548 | 181 |
|
30642 | 182 |
val ants = Antiquote.read (Symbol_Pos.explode (txt, pos), pos); |
56548 | 183 |
val _ = Position.reports (maps words ants); |
22124 | 184 |
in |
30635
a7d175c48228
replaced Antiquote.is_antiq by Antiquote.is_text;
wenzelm
parents:
30613
diff
changeset
|
185 |
if Toplevel.is_toplevel state andalso not (forall Antiquote.is_text ants) then |
48992 | 186 |
error ("Unknown context -- cannot expand document antiquotations" ^ Position.here pos) |
22124 | 187 |
else implode (map expand ants) |
188 |
end; |
|
189 |
||
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
190 |
fun check_text {delimited, text, pos} state = |
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
191 |
(Position.report pos (Markup.language_document delimited); |
51556 | 192 |
if Toplevel.is_skipped_proof state then () |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
193 |
else ignore (eval_antiquote (#1 (Keyword.get_lexicons ())) state (text, pos))); |
48918
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
194 |
|
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
195 |
|
22124 | 196 |
|
197 |
(** present theory source **) |
|
198 |
||
199 |
(*NB: arranging white space around command spans is a black art.*) |
|
200 |
||
201 |
(* presentation tokens *) |
|
202 |
||
203 |
datatype token = |
|
204 |
NoToken |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
205 |
| BasicToken of Token.T |
22124 | 206 |
| MarkupToken of string * (string * Position.T) |
207 |
| MarkupEnvToken of string * (string * Position.T) |
|
208 |
| VerbatimToken of string * Position.T; |
|
209 |
||
210 |
fun output_token lex state = |
|
30367 | 211 |
let val eval = eval_antiquote lex state in |
22124 | 212 |
fn NoToken => "" |
213 |
| BasicToken tok => Latex.output_basic tok |
|
214 |
| MarkupToken (cmd, txt) => Latex.output_markup cmd (eval txt) |
|
215 |
| MarkupEnvToken (cmd, txt) => Latex.output_markup_env cmd (eval txt) |
|
216 |
| VerbatimToken txt => Latex.output_verbatim (eval txt) |
|
217 |
end; |
|
218 |
||
219 |
fun basic_token pred (BasicToken tok) = pred tok |
|
220 |
| basic_token _ _ = false; |
|
221 |
||
51267 | 222 |
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
|
223 |
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
|
224 |
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
|
225 |
val newline_token = basic_token Token.is_newline; |
22124 | 226 |
|
227 |
||
228 |
(* command spans *) |
|
229 |
||
230 |
type command = string * Position.T * string list; (*name, position, tags*) |
|
231 |
type source = (token * (string * int)) list; (*token, markup flag, meta-comment depth*) |
|
232 |
||
233 |
datatype span = Span of command * (source * source * source * source) * bool; |
|
234 |
||
235 |
fun make_span cmd src = |
|
236 |
let |
|
237 |
fun take_newline (tok :: toks) = |
|
238 |
if newline_token (fst tok) then ([tok], toks, true) |
|
239 |
else ([], tok :: toks, false) |
|
240 |
| take_newline [] = ([], [], false); |
|
241 |
val (((src_prefix, src_main), src_suffix1), (src_suffix2, src_appendix, newline)) = |
|
242 |
src |
|
243 |
|> take_prefix (improper_token o fst) |
|
244 |
||>> take_suffix (improper_token o fst) |
|
245 |
||>> take_prefix (comment_token o fst) |
|
246 |
||> take_newline; |
|
247 |
in Span (cmd, (src_prefix, src_main, src_suffix1 @ src_suffix2, src_appendix), newline) end; |
|
248 |
||
249 |
||
250 |
(* present spans *) |
|
251 |
||
252 |
local |
|
253 |
||
254 |
fun err_bad_nesting pos = |
|
255 |
error ("Bad nesting of commands in presentation" ^ pos); |
|
256 |
||
257 |
fun edge which f (x: string option, y) = |
|
258 |
if x = y then I |
|
259 |
else (case which (x, y) of NONE => I | SOME txt => Buffer.add (f txt)); |
|
260 |
||
261 |
val begin_tag = edge #2 Latex.begin_tag; |
|
262 |
val end_tag = edge #1 Latex.end_tag; |
|
263 |
fun open_delim delim e = edge #2 Latex.begin_delim e #> delim #> edge #2 Latex.end_delim e; |
|
264 |
fun close_delim delim e = edge #1 Latex.begin_delim e #> delim #> edge #1 Latex.end_delim e; |
|
265 |
||
266 |
in |
|
267 |
||
268 |
fun present_span lex default_tags span state state' |
|
269 |
(tag_stack, active_tag, newline, buffer, present_cont) = |
|
270 |
let |
|
271 |
val present = fold (fn (tok, (flag, 0)) => |
|
272 |
Buffer.add (output_token lex state' tok) |
|
273 |
#> Buffer.add flag |
|
274 |
| _ => I); |
|
275 |
||
276 |
val Span ((cmd_name, cmd_pos, cmd_tags), srcs, span_newline) = span; |
|
277 |
||
278 |
val (tag, tags) = tag_stack; |
|
46924 | 279 |
val tag' = try hd (fold (update (op =)) cmd_tags (the_list tag)); |
22124 | 280 |
|
281 |
val active_tag' = |
|
282 |
if is_some tag' then tag' |
|
283 |
else if cmd_name = "end" andalso not (Toplevel.is_toplevel state') then NONE |
|
284 |
else try hd (default_tags cmd_name); |
|
285 |
val edge = (active_tag, active_tag'); |
|
286 |
||
287 |
val newline' = |
|
288 |
if is_none active_tag' then span_newline else newline; |
|
289 |
||
290 |
val nesting = Toplevel.level state' - Toplevel.level state; |
|
291 |
val tag_stack' = |
|
292 |
if nesting = 0 andalso not (Toplevel.is_proof state) then tag_stack |
|
293 |
else if nesting >= 0 then (tag', replicate nesting tag @ tags) |
|
294 |
else |
|
33957 | 295 |
(case drop (~ nesting - 1) tags of |
22124 | 296 |
tgs :: tgss => (tgs, tgss) |
48992 | 297 |
| [] => err_bad_nesting (Position.here cmd_pos)); |
22124 | 298 |
|
299 |
val buffer' = |
|
300 |
buffer |
|
301 |
|> end_tag edge |
|
302 |
|> close_delim (fst present_cont) edge |
|
303 |
|> snd present_cont |
|
304 |
|> open_delim (present (#1 srcs)) edge |
|
305 |
|> begin_tag edge |
|
306 |
|> present (#2 srcs); |
|
307 |
val present_cont' = |
|
308 |
if newline then (present (#3 srcs), present (#4 srcs)) |
|
309 |
else (I, present (#3 srcs) #> present (#4 srcs)); |
|
310 |
in (tag_stack', active_tag', newline', buffer', present_cont') end; |
|
311 |
||
312 |
fun present_trailer ((_, tags), active_tag, _, buffer, present_cont) = |
|
313 |
if not (null tags) then err_bad_nesting " at end of theory" |
|
314 |
else |
|
315 |
buffer |
|
316 |
|> end_tag (active_tag, NONE) |
|
317 |
|> close_delim (fst present_cont) (active_tag, NONE) |
|
318 |
|> snd present_cont; |
|
319 |
||
320 |
end; |
|
321 |
||
322 |
||
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
323 |
(* present_thy *) |
22124 | 324 |
|
325 |
datatype markup = Markup | MarkupEnv | Verbatim; |
|
326 |
||
327 |
local |
|
328 |
||
329 |
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
|
330 |
Scan.one Token.is_blank -- Scan.many Token.is_comment -- Scan.one Token.is_proper; |
22124 | 331 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
332 |
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore); |
22124 | 333 |
val improper = Scan.many is_improper; |
334 |
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
|
335 |
val blank_end = Scan.repeat (Scan.unless space_proper (Scan.one Token.is_blank)); |
22124 | 336 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
337 |
val opt_newline = Scan.option (Scan.one Token.is_newline); |
22124 | 338 |
|
339 |
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
|
340 |
Scan.depend (fn d => opt_newline |-- Scan.one Token.is_begin_ignore |
22124 | 341 |
>> 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
|
342 |
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
|
343 |
(if d = 0 then Scan.fail_with (K (fn () => "Bad nesting of meta-comments")) else opt_newline) |
22124 | 344 |
>> pair (d - 1)); |
345 |
||
36950 | 346 |
val tag = (improper -- Parse.$$$ "%" -- improper) |-- Parse.!!! (Parse.tag_name --| blank_end); |
22124 | 347 |
|
348 |
val locale = |
|
36950 | 349 |
Scan.option ((Parse.$$$ "(" -- improper -- Parse.$$$ "in") |-- |
350 |
Parse.!!! (improper |-- Parse.xname --| (improper -- Parse.$$$ ")"))); |
|
22124 | 351 |
|
352 |
in |
|
353 |
||
46811
03a2dc9e0624
clarified command span: include trailing whitespace/comments and thus reduce number of ignored spans with associated transactions and states (factor 2);
wenzelm
parents:
46261
diff
changeset
|
354 |
fun present_thy lex default_tags is_markup command_results toks = |
22124 | 355 |
let |
356 |
(* tokens *) |
|
357 |
||
358 |
val ignored = Scan.state --| ignore |
|
359 |
>> (fn d => (NONE, (NoToken, ("", d)))); |
|
360 |
||
361 |
fun markup mark mk flag = Scan.peek (fn d => |
|
36950 | 362 |
improper |-- |
46811
03a2dc9e0624
clarified command span: include trailing whitespace/comments and thus reduce number of ignored spans with associated transactions and states (factor 2);
wenzelm
parents:
46261
diff
changeset
|
363 |
Parse.position (Scan.one (Token.is_command andf is_markup mark o Token.content_of)) -- |
22124 | 364 |
Scan.repeat tag -- |
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51626
diff
changeset
|
365 |
Parse.!!!! ((improper -- locale -- improper) |-- Parse.document_source --| improper_end) |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
366 |
>> (fn (((tok, pos'), tags), {text, pos, ...}) => |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
367 |
let val name = Token.content_of tok |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
368 |
in (SOME (name, pos', tags), (mk (name, (text, pos)), (flag, d))) end)); |
22124 | 369 |
|
370 |
val command = Scan.peek (fn d => |
|
46811
03a2dc9e0624
clarified command span: include trailing whitespace/comments and thus reduce number of ignored spans with associated transactions and states (factor 2);
wenzelm
parents:
46261
diff
changeset
|
371 |
Parse.position (Scan.one (Token.is_command)) -- |
22124 | 372 |
Scan.repeat tag |
373 |
>> (fn ((tok, pos), tags) => |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
374 |
let val name = Token.content_of tok |
22124 | 375 |
in (SOME (name, pos, tags), (BasicToken tok, (Latex.markup_false, d))) end)); |
376 |
||
377 |
val cmt = Scan.peek (fn d => |
|
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51626
diff
changeset
|
378 |
Parse.$$$ "--" |-- Parse.!!!! (improper |-- Parse.document_source) |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
379 |
>> (fn {text, pos, ...} => (NONE, (MarkupToken ("cmt", (text, pos)), ("", d))))); |
22124 | 380 |
|
381 |
val other = Scan.peek (fn d => |
|
36950 | 382 |
Parse.not_eof >> (fn tok => (NONE, (BasicToken tok, ("", d))))); |
22124 | 383 |
|
384 |
val token = |
|
385 |
ignored || |
|
386 |
markup Markup MarkupToken Latex.markup_true || |
|
387 |
markup MarkupEnv MarkupEnvToken Latex.markup_true || |
|
388 |
markup Verbatim (VerbatimToken o #2) "" || |
|
389 |
command || cmt || other; |
|
390 |
||
391 |
||
392 |
(* spans *) |
|
393 |
||
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
394 |
val is_eof = fn (_, (BasicToken x, _)) => Token.is_eof x | _ => false; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
395 |
val stopper = Scan.stopper (K (NONE, (BasicToken Token.eof, ("", 0)))) is_eof; |
22124 | 396 |
|
397 |
val cmd = Scan.one (is_some o fst); |
|
27732 | 398 |
val non_cmd = Scan.one (is_none o fst andf not o is_eof) >> #2; |
22124 | 399 |
|
400 |
val comments = Scan.many (comment_token o fst o snd); |
|
401 |
val blank = Scan.one (blank_token o fst o snd); |
|
402 |
val newline = Scan.one (newline_token o fst o snd); |
|
403 |
val before_cmd = |
|
404 |
Scan.option (newline -- comments) -- |
|
405 |
Scan.option (newline -- comments) -- |
|
406 |
Scan.option (blank -- comments) -- cmd; |
|
407 |
||
408 |
val span = |
|
409 |
Scan.repeat non_cmd -- cmd -- |
|
410 |
Scan.repeat (Scan.unless before_cmd non_cmd) -- |
|
411 |
Scan.option (newline >> (single o snd)) |
|
412 |
>> (fn (((toks1, (cmd, tok2)), toks3), tok4) => |
|
413 |
make_span (the cmd) (toks1 @ (tok2 :: (toks3 @ the_default [] tok4)))); |
|
414 |
||
57080
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
415 |
val spans = toks |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
416 |
|> filter_out Token.is_semicolon |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
417 |
|> 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
|
418 |
|> Source.of_list |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
419 |
|> Source.source' 0 Token.stopper (Scan.error (Scan.bulk token)) NONE |
22124 | 420 |
|> Source.source stopper (Scan.error (Scan.bulk span)) NONE |
421 |
|> Source.exhaust; |
|
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
422 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
423 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
424 |
(* present commands *) |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
425 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
426 |
fun present_command tr span st st' = |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
427 |
Toplevel.setmp_thread_position tr (present_span lex default_tags span st st'); |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
428 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
429 |
fun present _ [] = I |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
430 |
| present st (((tr, st'), span) :: rest) = present_command tr span st st' #> present st' rest; |
22124 | 431 |
in |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
432 |
if length command_results = length spans then |
22124 | 433 |
((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
|
434 |
|> present Toplevel.toplevel (command_results ~~ spans) |
22124 | 435 |
|> present_trailer |
436 |
else error "Messed-up outer syntax for presentation" |
|
437 |
end; |
|
438 |
||
439 |
end; |
|
440 |
||
441 |
||
442 |
||
443 |
(** setup default output **) |
|
444 |
||
445 |
(* options *) |
|
446 |
||
53171 | 447 |
val _ = Theory.setup |
56204 | 448 |
(add_option @{binding show_types} (Config.put show_types o boolean) #> |
449 |
add_option @{binding show_sorts} (Config.put show_sorts o boolean) #> |
|
450 |
add_option @{binding show_structs} (Config.put show_structs o boolean) #> |
|
451 |
add_option @{binding show_question_marks} (Config.put show_question_marks o boolean) #> |
|
452 |
add_option @{binding show_abbrevs} (Config.put show_abbrevs o boolean) #> |
|
453 |
add_option @{binding names_long} (Config.put Name_Space.names_long o boolean) #> |
|
454 |
add_option @{binding names_short} (Config.put Name_Space.names_short o boolean) #> |
|
455 |
add_option @{binding names_unique} (Config.put Name_Space.names_unique o boolean) #> |
|
456 |
add_option @{binding eta_contract} (Config.put Syntax_Trans.eta_contract o boolean) #> |
|
457 |
add_option @{binding display} (Config.put display o boolean) #> |
|
458 |
add_option @{binding break} (Config.put break o boolean) #> |
|
459 |
add_option @{binding quotes} (Config.put quotes o boolean) #> |
|
460 |
add_option @{binding mode} (add_wrapper o Print_Mode.with_modes o single) #> |
|
461 |
add_option @{binding margin} (add_wrapper o setmp_CRITICAL Pretty.margin_default o integer) #> |
|
462 |
add_option @{binding indent} (Config.put indent o integer) #> |
|
463 |
add_option @{binding source} (Config.put source o boolean) #> |
|
464 |
add_option @{binding goals_limit} (Config.put Goal_Display.goals_limit o integer)); |
|
22124 | 465 |
|
466 |
||
467 |
(* basic pretty printing *) |
|
468 |
||
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
469 |
fun tweak_line ctxt s = |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
470 |
if Config.get ctxt display then s else Symbol.strip_blanks s; |
22124 | 471 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
472 |
fun pretty_text ctxt = |
46195 | 473 |
Pretty.chunks o map Pretty.str o map (tweak_line ctxt) o split_lines; |
22124 | 474 |
|
55829 | 475 |
fun pretty_text_report ctxt source = |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
476 |
let |
55829 | 477 |
val {delimited, pos, ...} = source; |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
478 |
val _ = Context_Position.report ctxt pos (Markup.language_text delimited); |
55829 | 479 |
val (s, _) = Symbol_Pos.source_content source; |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
480 |
in pretty_text ctxt s end; |
55561 | 481 |
|
26710
f79aa228c582
pretty_term: no revert_skolems here, but auto_fixes (token translations will do the rest);
wenzelm
parents:
26455
diff
changeset
|
482 |
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t; |
24920 | 483 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
484 |
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
|
485 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
486 |
fun pretty_term_style ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
487 |
pretty_term ctxt (style t); |
22124 | 488 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
489 |
fun pretty_thm_style ctxt (style, th) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
490 |
pretty_term ctxt (style (Thm.full_prop_of th)); |
22124 | 491 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
492 |
fun pretty_term_typ ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
493 |
let val t' = style t |
39288 | 494 |
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
|
495 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
496 |
fun pretty_term_typeof ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
497 |
Syntax.pretty_typ ctxt (Term.fastype_of (style t)); |
22124 | 498 |
|
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
499 |
fun pretty_const ctxt c = |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
500 |
let |
42360 | 501 |
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
|
502 |
handle TYPE (msg, _, _) => error msg; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
503 |
val ([t'], _) = Variable.import_terms true [t] ctxt; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
504 |
in pretty_term ctxt t' end; |
22124 | 505 |
|
25407
2859cf34aaf0
abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents:
25373
diff
changeset
|
506 |
fun pretty_abbrev ctxt s = |
22124 | 507 |
let |
42399 | 508 |
val t = Syntax.read_term (Proof_Context.set_mode Proof_Context.mode_abbrev ctxt) s; |
24920 | 509 |
fun err () = error ("Abbreviated constant expected: " ^ Syntax.string_of_term ctxt t); |
22124 | 510 |
val (head, args) = Term.strip_comb t; |
511 |
val (c, T) = Term.dest_Const head handle TERM _ => err (); |
|
42360 | 512 |
val (U, u) = Consts.the_abbreviation (Proof_Context.consts_of ctxt) c |
22124 | 513 |
handle TYPE _ => err (); |
514 |
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
|
515 |
val eq = Logic.mk_equals (t, t'); |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
516 |
val ctxt' = Variable.auto_fixes eq ctxt; |
42360 | 517 |
in Proof_Context.pretty_term_abbrev ctxt' eq end; |
22124 | 518 |
|
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
519 |
fun pretty_class ctxt = |
42360 | 520 |
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
|
521 |
|
39309
74469faa27ca
type antiquotation: allow arbitrary type abbreviations, but fail with user-space exception on bad input
haftmann
parents:
39308
diff
changeset
|
522 |
fun pretty_type ctxt s = |
56002 | 523 |
let val Type (name, _) = Proof_Context.read_type_name {proper = true, strict = false} ctxt s |
42360 | 524 |
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
|
525 |
|
33388 | 526 |
fun pretty_prf full ctxt = Proof_Syntax.pretty_proof_of ctxt full; |
22124 | 527 |
|
48927
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48918
diff
changeset
|
528 |
fun pretty_theory ctxt (name, pos) = |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48918
diff
changeset
|
529 |
(case find_first (fn thy => Context.theory_name thy = name) |
ef462b5558eb
theory def/ref position reports, which enable hyperlinks etc.;
wenzelm
parents:
48918
diff
changeset
|
530 |
(Theory.nodes_of (Proof_Context.theory_of ctxt)) of |
48992 | 531 |
NONE => error ("No ancestor theory " ^ quote name ^ Position.here pos) |
55614
e2d71b8b0d95
prefer guarded Context_Position.report where feasible;
wenzelm
parents:
55561
diff
changeset
|
532 |
| SOME thy => (Context_Position.report ctxt pos (Theory.get_markup thy); Pretty.str name)); |
22124 | 533 |
|
534 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
535 |
(* default output *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
536 |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
537 |
val str_of_source = space_implode " " o Token.unparse_src; |
22124 | 538 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
539 |
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
|
540 |
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
|
541 |
|> (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
|
542 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
543 |
fun output ctxt prts = |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
544 |
prts |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
545 |
|> (if Config.get ctxt quotes then map Pretty.quote else I) |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
546 |
|> (if Config.get ctxt display then |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
547 |
map (Output.output o Pretty.string_of o Pretty.indent (Config.get ctxt indent)) |
22124 | 548 |
#> space_implode "\\isasep\\isanewline%\n" |
549 |
#> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}" |
|
550 |
else |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
551 |
map (Output.output o (if Config.get ctxt break then Pretty.string_of else Pretty.str_of)) |
22124 | 552 |
#> space_implode "\\isasep\\isanewline%\n" |
553 |
#> enclose "\\isa{" "}"); |
|
554 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
555 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
556 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
557 |
(** concrete antiquotations **) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
558 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
559 |
(* basic entities *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
560 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
561 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
562 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
563 |
fun basic_entities name scan pretty = antiquotation name scan |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
564 |
(fn {source, context, ...} => 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
|
565 |
|
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
|
566 |
fun basic_entities_style name scan pretty = antiquotation name scan |
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
|
567 |
(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
|
568 |
output context |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
569 |
(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
|
570 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
571 |
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
|
572 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
573 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
574 |
|
53171 | 575 |
val _ = Theory.setup |
56204 | 576 |
(basic_entities_style @{binding thm} (Term_Style.parse -- Attrib.thms) pretty_thm_style #> |
577 |
basic_entity @{binding prop} (Term_Style.parse -- Args.prop) pretty_term_style #> |
|
578 |
basic_entity @{binding term} (Term_Style.parse -- Args.term) pretty_term_style #> |
|
579 |
basic_entity @{binding term_type} (Term_Style.parse -- Args.term) pretty_term_typ #> |
|
580 |
basic_entity @{binding typeof} (Term_Style.parse -- Args.term) pretty_term_typeof #> |
|
581 |
basic_entity @{binding const} (Args.const {proper = true, strict = false}) pretty_const #> |
|
582 |
basic_entity @{binding abbrev} (Scan.lift Args.name_inner_syntax) pretty_abbrev #> |
|
583 |
basic_entity @{binding typ} Args.typ_abbrev Syntax.pretty_typ #> |
|
584 |
basic_entity @{binding class} (Scan.lift Args.name_inner_syntax) pretty_class #> |
|
585 |
basic_entity @{binding type} (Scan.lift Args.name) pretty_type #> |
|
58069
0255436b3d85
more liberal embedded "text", which includes cartouches;
wenzelm
parents:
58011
diff
changeset
|
586 |
basic_entity @{binding text} (Scan.lift Args.text_source_position) pretty_text_report #> |
56204 | 587 |
basic_entities @{binding prf} Attrib.thms (pretty_prf false) #> |
588 |
basic_entities @{binding full_prf} Attrib.thms (pretty_prf true) #> |
|
589 |
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
|
590 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
591 |
end; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
592 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
593 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
594 |
(* goal state *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
595 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
596 |
local |
22124 | 597 |
|
30367 | 598 |
fun proof_state state = |
49847 | 599 |
(case try (Proof.goal o Toplevel.proof_of) state of |
600 |
SOME {goal, ...} => goal |
|
22124 | 601 |
| _ => error "No proof state"); |
602 |
||
49847 | 603 |
fun goal_state name main = antiquotation name (Scan.succeed ()) |
39125
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
38980
diff
changeset
|
604 |
(fn {state, context = ctxt, ...} => fn () => output ctxt |
51958
bca32217b304
retain goal display options when printing error messages, to avoid breakdown for huge goals;
wenzelm
parents:
51627
diff
changeset
|
605 |
[Goal_Display.pretty_goal |
bca32217b304
retain goal display options when printing error messages, to avoid breakdown for huge goals;
wenzelm
parents:
51627
diff
changeset
|
606 |
(Config.put Goal_Display.show_main_goal main ctxt) (proof_state state)]); |
22124 | 607 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
608 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
609 |
|
53171 | 610 |
val _ = Theory.setup |
56204 | 611 |
(goal_state @{binding goals} true #> |
612 |
goal_state @{binding subgoals} false); |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
613 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
614 |
end; |
22124 | 615 |
|
616 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
617 |
(* embedded lemma *) |
27522 | 618 |
|
46958
0ec8f04e753a
define keywords early when processing the theory header, before running the body commands;
wenzelm
parents:
46957
diff
changeset
|
619 |
val _ = Keyword.define ("by", NONE); (*overlap with command category*) |
46950
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
wenzelm
parents:
46947
diff
changeset
|
620 |
|
53171 | 621 |
val _ = Theory.setup |
56204 | 622 |
(antiquotation @{binding lemma} |
56029
8bedca4bd5a3
clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents:
56028
diff
changeset
|
623 |
(Scan.lift (Scan.ahead Parse.not_eof) -- Args.prop -- |
55795 | 624 |
Scan.lift (Parse.position (Args.$$$ "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
|
625 |
(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
|
626 |
let |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
627 |
val prop_src = Token.src (Token.name_of_src source) [prop_token]; |
55795 | 628 |
|
629 |
val reports = (by_pos, Markup.keyword1) :: maps Method.reports_of (m1 :: the_list m2); |
|
630 |
val _ = Context_Position.reports ctxt reports; |
|
631 |
||
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
632 |
(* FIXME check proof!? *) |
55739 | 633 |
val _ = ctxt |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
634 |
|> Proof.theorem NONE (K I) [[(prop, [])]] |
55795 | 635 |
|> Proof.global_terminal_proof (m1, m2); |
55739 | 636 |
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
|
637 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
638 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
639 |
(* ML text *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
640 |
|
40801 | 641 |
val verb_text = |
642 |
split_lines |
|
643 |
#> map (space_implode "\\verb,|," o map (enclose "\\verb|" "|") o space_explode "|") |
|
644 |
#> space_implode "\\isasep\\isanewline%\n"; |
|
645 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
646 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
647 |
|
58069
0255436b3d85
more liberal embedded "text", which includes cartouches;
wenzelm
parents:
58011
diff
changeset
|
648 |
fun ml_text name ml = antiquotation name (Scan.lift Args.text_source_position) |
55829 | 649 |
(fn {context, ...} => fn source => |
56304
40274e4f5ebf
redirect ML_Compiler reports more directly: only the (big) parse tree report is deferred via Execution.print (NB: this does not work for asynchronous "diag" commands);
wenzelm
parents:
56278
diff
changeset
|
650 |
(ML_Context.eval_in (SOME context) ML_Compiler.flags (#pos source) (ml source); |
55829 | 651 |
Symbol_Pos.source_content source |
652 |
|> #1 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
653 |
|> (if Config.get context quotes then quote else I) |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
654 |
|> (if Config.get context display then enclose "\\begin{verbatim}\n" "\n\\end{verbatim}" |
40801 | 655 |
else verb_text))); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
656 |
|
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
657 |
fun ml_enclose bg en source = |
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
658 |
ML_Lex.read Position.none bg @ |
56278
2576d3a40ed6
separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents:
56275
diff
changeset
|
659 |
ML_Lex.read_source false source @ |
55828
42ac3cfb89f6
clarified language markup: added "delimited" property;
wenzelm
parents:
55796
diff
changeset
|
660 |
ML_Lex.read Position.none 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
|
661 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
662 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
663 |
|
53171 | 664 |
val _ = Theory.setup |
56204 | 665 |
(ml_text @{binding ML} (ml_enclose "fn _ => (" ");") #> |
666 |
ml_text @{binding ML_op} (ml_enclose "fn _ => (op " ");") #> |
|
667 |
ml_text @{binding ML_type} (ml_enclose "val _ = NONE : (" ") option;") #> |
|
668 |
ml_text @{binding ML_structure} |
|
53171 | 669 |
(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
|
670 |
|
56204 | 671 |
ml_text @{binding ML_functor} (* FIXME formal treatment of functor name (!?) *) |
55829 | 672 |
(fn source => |
53171 | 673 |
ML_Lex.read Position.none ("ML_Env.check_functor " ^ |
55829 | 674 |
ML_Syntax.print_string (#1 (Symbol_Pos.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
|
675 |
|
56204 | 676 |
ml_text @{binding ML_text} (K [])); |
22124 | 677 |
|
678 |
end; |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
679 |
|
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
680 |
|
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
681 |
(* URLs *) |
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
682 |
|
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
683 |
val _ = Theory.setup |
56204 | 684 |
(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
|
685 |
(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
|
686 |
(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
|
687 |
enclose "\\url{" "}" name))); |
54702
3daeba5130f0
added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents:
53171
diff
changeset
|
688 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
689 |
end; |