summaryrefslogtreecommitdiff
path: root/tex/context/base/task-ini.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/task-ini.lua')
-rw-r--r--tex/context/base/task-ini.lua58
1 files changed, 32 insertions, 26 deletions
diff --git a/tex/context/base/task-ini.lua b/tex/context/base/task-ini.lua
index 0049cf512..7ba20fa20 100644
--- a/tex/context/base/task-ini.lua
+++ b/tex/context/base/task-ini.lua
@@ -9,37 +9,43 @@ if not modules then modules = { } end modules ['task-ini'] = {
-- this is a temporary solution, we need to isolate some modules and then
-- the load order can determine the trickery to be applied to node lists
-tasks.appendaction("processors", "normalizers", "fonts.collections.process", nil)
-tasks.appendaction("processors", "normalizers", "fonts.checkers.missing", nil)
+tasks.appendaction("processors", "normalizers", "fonts.collections.process")
+tasks.appendaction("processors", "normalizers", "fonts.checkers.missing")
-tasks.appendaction("processors", "characters", "chars.handle_mirroring", nil, "notail")
-tasks.appendaction("processors", "characters", "chars.handle_casing", nil, "notail")
-tasks.appendaction("processors", "characters", "chars.handle_breakpoints", nil, "notail")
-tasks.appendaction("processors", "characters", "scripts.preprocess", nil, "notail") -- this will be more generalized
+tasks.appendaction("processors", "characters", "chars.handle_mirroring")
+tasks.appendaction("processors", "characters", "chars.handle_casing")
+tasks.appendaction("processors", "characters", "chars.handle_breakpoints")
+tasks.appendaction("processors", "characters", "scripts.preprocess")
-tasks.appendaction("processors", "words", "kernel.hyphenation", nil)
-tasks.appendaction("processors", "words", "languages.words.check", nil, "notail")
+tasks.appendaction("processors", "words", "kernel.hyphenation")
+tasks.appendaction("processors", "words", "languages.words.check")
-tasks.appendaction("processors", "fonts", "nodes.process_characters", nil, "notail")
-tasks.appendaction("processors", "fonts", "nodes.inject_kerns", nil, "nohead")
-tasks.appendaction("processors", "fonts", "nodes.protect_glyphs", nil, "nohead")
-tasks.appendaction("processors", "fonts", "kernel.ligaturing", nil)
-tasks.appendaction("processors", "fonts", "kernel.kerning", nil)
+tasks.appendaction("processors", "fonts", "nodes.process_characters")
+tasks.appendaction("processors", "fonts", "nodes.inject_kerns")
+tasks.appendaction("processors", "fonts", "nodes.protect_glyphs", nil, "nohead")
+tasks.appendaction("processors", "fonts", "kernel.ligaturing")
+tasks.appendaction("processors", "fonts", "kernel.kerning")
-tasks.appendaction("processors", "lists", "lists.handle_spacing", nil, "notail")
-tasks.appendaction("processors", "lists", "lists.handle_kerning", nil, "notail")
+tasks.appendaction("processors", "lists", "lists.handle_spacing")
+tasks.appendaction("processors", "lists", "lists.handle_kerning")
-tasks.appendaction("shipouts", "normalizers", "nodes.cleanup_page", nil, "notail")
+tasks.appendaction("shipouts", "normalizers", "nodes.cleanup_page")
+tasks.appendaction("shipouts", "normalizers", "nodes.add_references")
+tasks.appendaction("shipouts", "normalizers", "nodes.add_destinations")
-tasks.appendaction("shipouts", "finishers", "shipouts.handle_color", nil, "notail")
-tasks.appendaction("shipouts", "finishers", "shipouts.handle_transparency", nil, "notail")
-tasks.appendaction("shipouts", "finishers", "shipouts.handle_overprint", nil, "notail")
-tasks.appendaction("shipouts", "finishers", "shipouts.handle_negative", nil, "notail")
-tasks.appendaction("shipouts", "finishers", "shipouts.handle_effect", nil, "notail")
-tasks.appendaction("shipouts", "finishers", "shipouts.handle_viewerlayer", nil, "notail")
+tasks.appendaction("shipouts", "finishers", "shipouts.handle_color")
+tasks.appendaction("shipouts", "finishers", "shipouts.handle_transparency")
+tasks.appendaction("shipouts", "finishers", "shipouts.handle_overprint")
+tasks.appendaction("shipouts", "finishers", "shipouts.handle_negative")
+tasks.appendaction("shipouts", "finishers", "shipouts.handle_effect")
+tasks.appendaction("shipouts", "finishers", "shipouts.handle_viewerlayer")
-tasks.appendaction("math", "normalizers", "noads.relocate_characters", nil, "nohead")
-tasks.appendaction("math", "normalizers", "noads.resize_characters", nil, "nohead")
-tasks.appendaction("math", "normalizers", "noads.respace_characters", nil, "nohead")
+tasks.appendaction("math", "normalizers", "noads.relocate_characters", nil, "nohead")
+tasks.appendaction("math", "normalizers", "noads.resize_characters", nil, "nohead")
+tasks.appendaction("math", "normalizers", "noads.respace_characters", nil, "nohead")
-tasks.appendaction("math", "builders", "noads.mlist_to_hlist", nil, "notail")
+tasks.appendaction("math", "builders", "noads.mlist_to_hlist")
+
+-- quite experimental
+
+tasks.appendaction("finalizers", "lists", "nodes.repackage_graphicvadjust")