-paras working
This commit is contained in:
parent
a3d7a278d1
commit
58a1e8c05f
|
@ -433,7 +433,7 @@ let rec ops_of_drawop struct_tree dryrun pdf endpage filename bates batespad num
|
|||
flatten
|
||||
(map
|
||||
(function para ->
|
||||
if not !first then ([Pdfops.Op_T']) else (clear first; []) @ format_paragraph j w para)
|
||||
(if not !first then ([Pdfops.Op_T']) else (clear first; [])) @ format_paragraph j w para)
|
||||
s)
|
||||
| Leading f -> [Pdfops.Op_TL f]
|
||||
| CharSpace f -> [Pdfops.Op_Tc f]
|
||||
|
|
|
@ -373,7 +373,7 @@ let addpara s =
|
|||
addop (Cpdfdraw.Para (j, w, [s]))
|
||||
|
||||
let rec split_on_newlines a = function
|
||||
| 0x005c::0x004e::t -> rev a::split_on_newlines [] t
|
||||
| 0x005c::0x006e::t -> rev a::split_on_newlines [] t
|
||||
| h::t -> split_on_newlines (h::a) t
|
||||
| [] -> if a = [] then [] else [rev a]
|
||||
|
||||
|
|
Loading…
Reference in New Issue