diff options
Diffstat (limited to 'tex/context/base/typo-drp.lua')
-rw-r--r-- | tex/context/base/typo-drp.lua | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/tex/context/base/typo-drp.lua b/tex/context/base/typo-drp.lua index 1f935802d..415712d46 100644 --- a/tex/context/base/typo-drp.lua +++ b/tex/context/base/typo-drp.lua @@ -177,7 +177,7 @@ actions[v_default] = function(head,setting) return head, done end -local function process(namespace,attribute,head) +function initials.handler(head) local start = head local attr = nil while start do @@ -206,11 +206,3 @@ local function process(namespace,attribute,head) end return head, false end - -initials.attribute = a_initial - -initials.handler = nodes.installattributehandler { - name = "initials", - namespace = initials, - processor = process, -} |