author | wenzelm |
Wed, 19 May 2021 21:42:45 +0200 | |
changeset 73751 | fefb5ccb1e5e |
parent 69965 | da5e7278286b |
child 73752 | eeb076fc569f |
permissions | -rw-r--r-- |
48879 | 1 |
(* Title: Pure/pure_syn.ML |
2 |
Author: Makarius |
|
3 |
||
60096 | 4 |
Outer syntax for bootstrapping: commands that are accessible outside a |
5 |
regular theory context. |
|
48879 | 6 |
*) |
7 |
||
60095 | 8 |
signature PURE_SYN = |
9 |
sig |
|
67381 | 10 |
val document_command: {markdown: bool} -> (xstring * Position.T) option * Input.source -> |
11 |
Toplevel.transition -> Toplevel.transition |
|
60095 | 12 |
val bootstrap_thy: theory |
13 |
end; |
|
14 |
||
15 |
structure Pure_Syn: PURE_SYN = |
|
48879 | 16 |
struct |
17 |
||
62912 | 18 |
val semi = Scan.option (Parse.$$$ ";"); |
19 |
||
73751 | 20 |
val output_document = |
21 |
Thy_Output.output_document_report o Toplevel.presentation_context; |
|
67569
5d71b114e7a3
avoid proliferation of language_document reports;
wenzelm
parents:
67381
diff
changeset
|
22 |
|
5d71b114e7a3
avoid proliferation of language_document reports;
wenzelm
parents:
67381
diff
changeset
|
23 |
fun document_command markdown (loc, txt) = |
67381 | 24 |
Toplevel.keep (fn state => |
25 |
(case loc of |
|
67569
5d71b114e7a3
avoid proliferation of language_document reports;
wenzelm
parents:
67381
diff
changeset
|
26 |
NONE => ignore (output_document state markdown txt) |
67381 | 27 |
| SOME (_, pos) => |
28 |
error ("Illegal target specification -- not a theory context" ^ Position.here pos))) o |
|
29 |
Toplevel.present_local_theory loc (fn state => |
|
67569
5d71b114e7a3
avoid proliferation of language_document reports;
wenzelm
parents:
67381
diff
changeset
|
30 |
ignore (output_document state markdown txt)); |
67381 | 31 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
32 |
val _ = |
64556 | 33 |
Outer_Syntax.command ("chapter", \<^here>) "chapter heading" |
67381 | 34 |
(Parse.opt_target -- Parse.document_source --| semi >> document_command {markdown = false}); |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
35 |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
36 |
val _ = |
64556 | 37 |
Outer_Syntax.command ("section", \<^here>) "section heading" |
67381 | 38 |
(Parse.opt_target -- Parse.document_source --| semi >> document_command {markdown = false}); |
58918 | 39 |
|
48879 | 40 |
val _ = |
64556 | 41 |
Outer_Syntax.command ("subsection", \<^here>) "subsection heading" |
67381 | 42 |
(Parse.opt_target -- Parse.document_source --| semi >> document_command {markdown = false}); |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
43 |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
44 |
val _ = |
64556 | 45 |
Outer_Syntax.command ("subsubsection", \<^here>) "subsubsection heading" |
67381 | 46 |
(Parse.opt_target -- Parse.document_source --| semi >> document_command {markdown = false}); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
47 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
48 |
val _ = |
64556 | 49 |
Outer_Syntax.command ("paragraph", \<^here>) "paragraph heading" |
67381 | 50 |
(Parse.opt_target -- Parse.document_source --| semi >> document_command {markdown = false}); |
61463 | 51 |
|
52 |
val _ = |
|
64556 | 53 |
Outer_Syntax.command ("subparagraph", \<^here>) "subparagraph heading" |
67381 | 54 |
(Parse.opt_target -- Parse.document_source --| semi >> document_command {markdown = false}); |
61463 | 55 |
|
56 |
val _ = |
|
64556 | 57 |
Outer_Syntax.command ("text", \<^here>) "formal comment (primary style)" |
67381 | 58 |
(Parse.opt_target -- Parse.document_source >> document_command {markdown = true}); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
59 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
60 |
val _ = |
64556 | 61 |
Outer_Syntax.command ("txt", \<^here>) "formal comment (secondary style)" |
67381 | 62 |
(Parse.opt_target -- Parse.document_source >> document_command {markdown = true}); |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
63 |
|
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58928
diff
changeset
|
64 |
val _ = |
64556 | 65 |
Outer_Syntax.command ("text_raw", \<^here>) "LaTeX text (without surrounding environment)" |
67381 | 66 |
(Parse.opt_target -- Parse.document_source >> document_command {markdown = true}); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
67 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58918
diff
changeset
|
68 |
val _ = |
64556 | 69 |
Outer_Syntax.command ("theory", \<^here>) "begin theory" |
58852 | 70 |
(Thy_Header.args >> |
71 |
(fn _ => Toplevel.init_theory (fn () => error "Missing theory initialization"))); |
|
48879 | 72 |
|
60095 | 73 |
|
62876 | 74 |
val bootstrap_thy = Context.the_global_context (); |
60095 | 75 |
|
76 |
val _ = Theory.setup (Config.put_global Outer_Syntax.bootstrap false); |
|
77 |
||
48879 | 78 |
end; |