Details
-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
None
-
15
-
3
-
5733
Description
It looks like for conversion to pdf, the converter is making the tabs in <programlisting> blocks come out as only a single character. The tabs look better in the html output.
There is probably some XSL setting we can use to make tabs become 8 spaces (or the equivalent spacing) in the pdf conversion.
Attachments
Activity
Assignee | Original: Richard Henwood [ rhenwood ] | New: Lustre Manual Triage [ LM-Triage ] |
End date | New: 04/Dec/14 | |
Start date | New: 30/Nov/12 |
Business Value | New: 15 |
Assignee | Original: Jessica A. Popp [ jessica ] | New: Richard Henwood [ rhenwood ] |
Labels | New: QInfrastructure |
I suggest to substitute <tabs> with <spaces> during "make pdf".
However, I think that 3 spaces instead of 8 is better.
Old Makefile:
$(TGT_BASE).pdf: $(TGT_BASE).fo
fop $< $@
New Makefile:
$(TGT_BASE).pdf: $(TGT_BASE).fo
sed -e 's;<tab char>;<spaces>;g' $< | fop - $@