oc-csl: Recognise ¶/§ entity locators

* lisp/oc-csl.el: Recognise org-entity based paragraph and section
locators "\P" and "\S".
This commit is contained in:
TEC 2023-03-23 02:32:27 +08:00
parent 798fb3aaa9
commit 87543ee6fb
Signed by: tec
SSH Key Fingerprint: SHA256:eobz41Mnm0/iYWBvWThftS0ElEs1ftBr6jamutnXc/A
1 changed files with 4 additions and 0 deletions

View File

@ -382,13 +382,17 @@ If nil then the Chicago author-date style is used as a fallback.")
("paragraph" . "paragraph")
("para." . "paragraph")
("paras." . "paragraph")
("\\P" . "paragraph")
("" . "paragraph")
("\\P\\P" . "paragraph")
("¶¶" . "paragraph")
("part" . "part")
("pt." . "part")
("pts." . "part")
("§" . "section")
("\\S" . "section")
("§§" . "section")
("\\S\\S" . "section")
("section" . "section")
("sec." . "section")
("secs." . "section")