bookshelf-doc/DocGen4/Output/DocString.lean

211 lines
7.6 KiB
Plaintext
Raw Normal View History

2022-02-17 05:47:38 +00:00
import CMark
import DocGen4.Output.Template
import Lean.Data.Parsec
import Unicode.General.GeneralCategory
2022-02-17 05:47:38 +00:00
open Lean Unicode Xml Parser Parsec DocGen4.Process
2022-02-17 05:47:38 +00:00
namespace DocGen4
namespace Output
2022-02-20 05:28:48 +00:00
/-- Auxiliary function for `splitAround`. -/
@[specialize] partial def splitAroundAux (s : String) (p : Char → Bool) (b i : String.Pos) (r : List String) : List String :=
if s.atEnd i then
let r := (s.extract b i)::r
r.reverse
else
let c := s.get i
if p c then
let i := s.next i
2022-04-09 17:18:21 +00:00
splitAroundAux s p i i (c.toString::s.extract b (i-⟨1⟩)::r)
2022-02-20 05:28:48 +00:00
else
splitAroundAux s p b (s.next i) r
/--
Similar to `Stirng.split` in Lean core, but keeps the separater.
e.g. `splitAround "a,b,c" (λ c => c = ',') = ["a", ",", "b", ",", "c"]`
-/
def splitAround (s : String) (p : Char → Bool) : List String := splitAroundAux s p 0 0 []
2022-02-17 16:46:02 +00:00
instance : Inhabited Element := ⟨"", Std.RBMap.empty, #[]⟩
/-- Parse an array of Xml/Html document from String. -/
2022-02-17 05:47:38 +00:00
def manyDocument : Parsec (Array Element) := many (prolog *> element <* many Misc) <* eof
/--
Generate id for heading elements, with the following rules:
2022-02-20 05:28:48 +00:00
1. Characters in `letter`, `mark`, `number` and `symbol` unicode categories are preserved.
2. Any sequences of Characters in `punctuation`, `separator` and `other` categories are replaced by a single dash.
3. Cases (upper and lower) are preserved.
4. Xml/Html tags are ignored.
-/
partial def xmlGetHeadingId (el : Xml.Element) : String :=
elementToPlainText el |> replaceCharSeq unicodeToDrop "-"
2022-02-17 07:26:17 +00:00
where
elementToPlainText el := match el with
2022-07-23 11:04:36 +00:00
| (Element.Element _ _ contents) =>
"".intercalate (contents.toList.map contentToPlainText)
2022-02-17 07:26:17 +00:00
contentToPlainText c := match c with
| Content.Element el => elementToPlainText el
| Content.Comment _ => ""
| Content.Character s => s
replaceCharSeq pattern replacement s :=
s.split pattern
|>.filter (!·.isEmpty)
|> replacement.intercalate
2022-02-20 05:28:48 +00:00
unicodeToDrop (c : Char) : Bool :=
charInGeneralCategory c GeneralCategory.punctuation ||
charInGeneralCategory c GeneralCategory.separator ||
charInGeneralCategory c GeneralCategory.other
2022-02-17 07:26:17 +00:00
/--
This function try to find the given name, both globally and in current module.
2022-02-17 07:26:17 +00:00
For global search, a precise name is need. If the global search fails, the function
tries to find a local one that ends with the given search name.
-/
def nameToLink? (s : String) : HtmlM (Option String) := do
2022-02-17 16:46:02 +00:00
let res ← getResult
2022-02-19 21:03:44 +00:00
if let some name := Lean.Syntax.decodeNameLit ("`" ++ s) then
-- with exactly the same name
if res.name2ModIdx.contains name then
declNameToLink name
2022-02-20 05:28:48 +00:00
-- module name
else if res.moduleNames.contains name then
moduleNameToLink name
2022-02-19 21:03:44 +00:00
-- find similar name in the same module
else
match (← getCurrentName) with
| some currentName =>
match res.moduleInfo.find! currentName |>.members |> filterMapDocInfo |>.find? (sameEnd ·.getName name) with
| some info =>
declNameToLink info.getName
| _ => pure none
2022-02-17 16:46:02 +00:00
| _ => pure none
2022-02-19 21:03:44 +00:00
else
pure none
2022-02-19 19:28:03 +00:00
where
2022-02-19 21:03:44 +00:00
-- check if two names have the same ending components
sameEnd n1 n2 :=
2022-02-20 05:28:48 +00:00
List.zip n1.components' n2.components'
2022-02-19 21:03:44 +00:00
|>.all λ ⟨a, b⟩ => a == b
2022-02-17 16:46:02 +00:00
/--
Extend links with following rules:
1. if the link starts with `##`, a name search is used and will panic if not found
2. if the link starts with `#`, it's treated as id link, no modification
3. if the link starts with `http`, it's an absolute one, no modification
4. otherwise it's a relative link, extend it with base url
-/
def extendLink (s : String) : HtmlM String := do
2022-02-17 19:26:38 +00:00
-- for intra doc links
if s.startsWith "##" then
if let some link ← nameToLink? (s.drop 2) then
2022-02-17 16:46:02 +00:00
pure link
else
2022-02-17 19:26:38 +00:00
panic! s!"Cannot find {s.drop 2}, only full name and abbrev in current module is supported"
-- for id
else if s.startsWith "#" then
pure s
2022-02-17 16:46:02 +00:00
-- for absolute and relative urls
2022-02-17 17:39:02 +00:00
else if s.startsWith "http" then
2022-02-17 16:46:02 +00:00
pure s
else pure ((←getRoot) ++ s)
/-- Add attributes for heading. -/
def addHeadingAttributes (el : Element) (modifyElement : Element → HtmlM Element) : HtmlM Element := do
match el with
| Element.Element name attrs contents => do
let id := xmlGetHeadingId el
let anchorAttributes := Std.RBMap.empty
|>.insert "class" "hover-link"
|>.insert "href" s!"#{id}"
let anchor := Element.Element "a" anchorAttributes #[Content.Character "#"]
let newAttrs := attrs
|>.insert "id" id
|>.insert "class" "markdown-heading"
let newContents := (←
contents.mapM (λ c => match c with
| Content.Element e => (modifyElement e).map (Content.Element)
| _ => pure c))
|>.push (Content.Character " ")
|>.push (Content.Element anchor)
pure ⟨ name, newAttrs, newContents⟩
/-- Extend anchor links. -/
def extendAnchor (el : Element) : HtmlM Element := do
match el with
| Element.Element name attrs contents =>
let newAttrs ← match (attrs.find? "href").map extendLink with
| some href => href.map (attrs.insert "href")
| none => pure attrs
pure ⟨ name, newAttrs, contents⟩
/-- Automatically add intra documentation link for inline code span. -/
def autoLink (el : Element) : HtmlM Element := do
match el with
| Element.Element name attrs contents =>
let mut newContents := #[]
for c in contents do
match c with
| Content.Character s =>
2022-02-20 05:28:48 +00:00
newContents := newContents ++ (← splitAround s unicodeToSplit |>.mapM linkify).join
| _ => newContents := newContents.push c
pure ⟨ name, attrs, newContents ⟩
where
linkify s := do
let link? ← nameToLink? s
match link? with
| some link =>
let attributes := Std.RBMap.empty.insert "href" link
2022-07-23 11:01:25 +00:00
pure [Content.Element <| Element.Element "a" attributes #[Content.Character s]]
2022-02-20 05:28:48 +00:00
| none =>
let sHead := s.dropRightWhile (λ c => c ≠ '.')
let sTail := s.takeRightWhile (λ c => c ≠ '.')
let link'? ← nameToLink? sTail
match link'? with
| some link' =>
let attributes := Std.RBMap.empty.insert "href" link'
pure [
Content.Character sHead,
2022-07-23 11:01:25 +00:00
Content.Element <| Element.Element "a" attributes #[Content.Character sTail]
2022-02-20 05:28:48 +00:00
]
| none =>
pure [Content.Character s]
unicodeToSplit (c : Char) : Bool :=
charInGeneralCategory c GeneralCategory.separator ||
charInGeneralCategory c GeneralCategory.other
/-- Core function of modifying the cmark rendered docstring html. -/
2022-02-20 05:28:48 +00:00
partial def modifyElement (element : Element) : HtmlM Element :=
2022-02-17 16:46:02 +00:00
match element with
| el@(Element.Element name attrs contents) => do
-- add id and class to <h_></h_>
if name = "h1" name = "h2" name = "h3" name = "h4" name = "h5" name = "h6" then
addHeadingAttributes el modifyElement
2022-02-17 16:46:02 +00:00
-- extend relative href for <a></a>
else if name = "a" then
extendAnchor el
2022-02-17 16:46:02 +00:00
-- auto link for inline <code></code>
2022-02-20 05:28:48 +00:00
else if name = "code" then
autoLink el
2022-02-17 16:46:02 +00:00
-- recursively modify
else
let newContents ← contents.mapM λ c => match c with
2022-02-20 05:28:48 +00:00
| Content.Element e => (modifyElement e).map Content.Element
2022-02-17 16:46:02 +00:00
| _ => pure c
pure ⟨ name, attrs, newContents ⟩
2022-02-17 05:47:38 +00:00
/-- Convert docstring to Html. -/
2022-02-17 13:26:02 +00:00
def docStringToHtml (s : String) : HtmlM (Array Html) := do
2022-02-17 05:47:38 +00:00
let rendered := CMark.renderHtml s
2022-02-17 13:26:02 +00:00
match manyDocument rendered.mkIterator with
| Parsec.ParseResult.success _ res =>
res.mapM λ x => do
2022-07-23 11:01:25 +00:00
pure (Html.text <| toString (← modifyElement x))
2022-02-17 13:26:02 +00:00
| _ => pure #[Html.text rendered]
2022-02-17 05:47:38 +00:00
end Output
end DocGen4