Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
omd_utils.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
(***********************************************************************) (* omd: Markdown frontend in OCaml *) (* (c) 2013/2014 by Philippe Wang <philippe.wang@cl.cam.ac.uk> *) (* Licence : ISC *) (* http://www.isc.org/downloads/software-support-policy/isc-license/ *) (***********************************************************************) open Printf let debug = let _DEBUG = try Some(Sys.getenv "DEBUG") with _ -> None and _OMD_DEBUG = try Some(Sys.getenv "OMD_DEBUG") with _ -> None in match _DEBUG, _OMD_DEBUG with | _, Some "false" -> false | Some _, None -> eprintf "omd: debug mode activated because DEBUG is set, \ you can deactivate the mode by unsetting DEBUG \ or by setting OMD_DEBUG to the string \"false\".\n%!"; true | None, None -> false | _, Some _ -> eprintf "omd: debug mode activated because OMD_DEBUG is set to a value that isn't the string \"false\".\n%!"; true exception Error of string let warn ?(we=false) msg = if we then raise (Error msg) else eprintf "(OMD) Warning: %s\n%!" msg let trackfix = try ignore(Sys.getenv "OMD_FIX"); eprintf "omd: tracking mode activated: token list are very often checked, \ it might take a *very* long time if your input is large.\n%!"; true with Not_found -> false let _ = if debug then Printexc.record_backtrace true let raise = if debug then (fun e -> eprintf "(OMD) Exception raised: %s\n%!" (Printexc.to_string e); raise e) else raise module StringSet : sig include Set.S with type elt = string val of_list : elt list -> t end = struct include Set.Make(String) let of_list l = List.fold_left (fun r e -> add e r) empty l end type 'a split = 'a list -> 'a split_action and 'a split_action = | Continue | Continue_with of 'a list * 'a list | Split of 'a list * 'a list let fsplit_rev ?(excl=(fun _ -> false)) ~(f:'a split) l : ('a list * 'a list) option = let rec loop accu = function | [] -> begin match f [] with | Split(left, right) -> Some(left@accu, right) | Continue_with(left, tl) -> loop (left@accu) tl | Continue -> None end | e::tl as l -> if excl l then None else match f l with | Split(left, right) -> Some(left@accu, right) | Continue_with(left, tl) -> loop (left@accu) tl | Continue -> loop (e::accu) tl in loop [] l let fsplit ?(excl=(fun _ -> false)) ~f l = match fsplit_rev ~excl:excl ~f:f l with | None -> None | Some(rev, l) -> Some(List.rev rev, l) let id_of_string ids s = let n = String.length s in let out = Buffer.create 0 in (* Put [s] into [b], replacing non-alphanumeric characters with dashes. *) let rec loop started i = if i = n then () else match s.[i] with | 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' as c -> Buffer.add_char out c ; loop true (i + 1) (* Don't want to start with dashes. *) | _ when not started -> loop false (i + 1) | _ -> Buffer.add_char out '-' ; loop false (i + 1) in loop false 0 ; let s' = Buffer.contents out in if s' = "" then "" else (* Find out the index of the last character in [s'] that isn't a dash. *) let last_trailing = let rec loop i = if i < 0 || s'.[i] <> '-' then i else loop (i - 1) in loop (String.length s' - 1) in (* Trim trailing dashes. *) ids#mangle @@ String.sub s' 0 (last_trailing + 1) (* only convert when "necessary" *) let htmlentities ?(md=false) s = let module Break = struct exception Break end in let b = Buffer.create 64 in let rec loop i = if i = String.length s then () else let () = match s.[i] with | ( '0' .. '9' | 'a' .. 'z' | 'A' .. 'Z' ) as c -> Buffer.add_char b c | '"' -> Buffer.add_string b """ | '\'' -> Buffer.add_string b "'" | '&' -> if md then begin try let () = match s.[i+1] with | '#' -> let rec ff j = match s.[j] with | '0' .. '9' -> ff (succ j) | ';' -> () | _ -> raise Break.Break in ff (i+2) | 'A' .. 'Z' | 'a' .. 'z' -> let rec ff j = match s.[j] with | 'A' .. 'Z' | 'a' .. 'z' -> ff (succ j) | ';' -> () | _ -> raise Break.Break in ff (i+2) | _ -> raise Break.Break in Buffer.add_string b "&" with _ -> Buffer.add_string b "&" end else Buffer.add_string b "&" | '<' -> Buffer.add_string b "<" | '>' -> Buffer.add_string b ">" | c -> Buffer.add_char b c in loop (succ i) in loop 0; Buffer.contents b let minimalize_blanks s = let l = String.length s in let b = Buffer.create l in let rec loop f i = if i = l then Buffer.contents b else match s.[i] with | ' ' | '\t' | '\n' -> loop true (succ i) | c -> if Buffer.length b > 0 && f then Buffer.add_char b ' '; loop false (succ i) in loop false 0 let rec eat f = function | [] -> [] | e::tl as l -> if f e then eat f tl else l let rec extract_html_attributes (html:string) = let rec cut_on_char_from s i c = match String.index_from s i c with | 0 -> "", String.sub s 1 (String.length s - 1) | j -> String.sub s i (j-i), String.sub s (j+1) (String.length s - (j+1)) in let remove_prefix_spaces s = if s = "" then s else if s.[0] <> ' ' then s else let rec loop i = if i = String.length s then String.sub s i (String.length s - i) else match s.[i] with | ' ' -> loop (i+1) | _ -> String.sub s i (String.length s - i) in loop 1 in let remove_suffix_spaces s = if s = "" then s else if s.[String.length s - 1] <> ' ' then s else let rec loop i = match s.[i] with | ' ' -> loop (i-1) | _ -> String.sub s 0 (i+1) in loop (String.length s - 1) in let rec loop s res i = if i = String.length s then res else match try Some (take_attribute s i) with Not_found -> None with | Some (((_,_) as a), new_s) -> loop new_s (a::res) 0 | None -> res and take_attribute s i = let name, after_eq = cut_on_char_from s i '=' in let name = remove_suffix_spaces name in let after_eq = remove_prefix_spaces after_eq in let value, rest = cut_on_char_from after_eq 1 after_eq.[0] in (name,value), remove_prefix_spaces rest in if (* Has it at least one attribute? *) try String.index html '>' < String.index html ' ' with Not_found -> true then [] else match html.[1] with | '<' | ' ' -> extract_html_attributes (remove_prefix_spaces (String.sub html 1 (String.length html - 1))) | _ -> try let html = snd (cut_on_char_from html 0 ' ') in loop (String.sub html 0 (String.index html '>')) [] 0 with Not_found -> [] let rec extract_inner_html (html:string) = let rec cut_on_char_from s i c = match String.index_from s i c with | 0 -> "", String.sub s 1 (String.length s - 1) | j -> String.sub s i (j-i), String.sub s (j+1) (String.length s - (j+1)) in let rec rcut_on_char_from s i c = match String.rindex_from s i c with | 0 -> "", String.sub s 1 (String.length s - 1) | j -> String.sub s 0 j, String.sub s (j+1) (String.length s - (j+1)) in let _, p = cut_on_char_from html 0 '>' in let r, _ = rcut_on_char_from p (String.length p - 1) '<' in r let html_void_elements = StringSet.of_list [ "img"; "input"; "link"; "meta"; "br"; "hr"; "source"; "wbr"; "param"; "embed"; "base"; "area"; "col"; "track"; "keygen"; ] let ( @ ) l1 l2 = List.rev_append (List.rev l1) l2