definition:
|
replaceIdLinks :: DocOptions -> String -> String
replaceIdLinks opts str = case str of
[] -> []
('\\':'\'':cs) -> '\'' : replaceIdLinks opts cs
(c:cs) -> if c == '\'' then tryReplaceIdLink [] cs
else c : replaceIdLinks opts cs
where
tryReplaceIdLink ltxt [] = '\'' : reverse ltxt
tryReplaceIdLink ltxt (c:cs)
| isSpace c
= '\'' : reverse ltxt ++ c : replaceIdLinks opts cs -- no space in id
| c == '\''
= checkId (reverse ltxt) ++ replaceIdLinks opts cs
| otherwise
= tryReplaceIdLink (c:ltxt) cs
checkId s
| ' ' `elem` s
= '\'' : s ++ ['\'']
| otherwise
= let xs = splitOn "." s
urlref = if length xs == 1
then '#':s
else docURL opts (intercalate "." (init xs)) ++
".html#" ++ last xs
in if withMarkdown opts
then "[" ++ s ++ "](" ++ urlref ++ ")"
else "<code><a href=\"" ++ urlref ++ "\">"++s++"</a></code>"
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Replace identifier hyperlinks in a string (i.e., enclosed in single quotes)
-- by HTML refences:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {[]} || (_,{:}) |-> _}
|
name:
|
replaceIdLinks
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CurryDoc.Options.DocOptions -> String -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|