Skip to content

Commit

Permalink
Fix UTC Serialization in PDFDate.serialize() Method (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shenile authored Nov 21, 2024
1 parent 1a1a6d7 commit 5b7fce3
Show file tree
Hide file tree
Showing 592 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ This can also be enabled programmatically with `warnings.simplefilter('default',
* support for `align=` in [`FPDF.table()`](https://py-pdf.github.io/fpdf2/Tables.html#setting-table-column-widths). Due to this correction, tables are now properly horizontally aligned on the page by default. This was always specified in the documentation, but was not in effect until now. You can revert to have left-aligned tables by passing `align="LEFT"` to `FPDF.table()`.
* `FPDF.set_text_shaping(False)` was broken since version 2.7.8 and is now working properly - [issue #1287](https://github.com/py-pdf/fpdf2/issues/1287)
* fixed bug where cells with `rowspan`, `colspan` > 1 and null text were not displayed properly - [issue #1293](https://github.com/py-pdf/fpdf2/issues/1293)
* `CreationDate` metadata used a wrong timezone offset for UTC - [issue #1261](https://github.com/py-pdf/fpdf2/issues/1261)
### Changed
* improved logic for handling text substitution of the total number of pages, ensuring compatibility with text shaping - [issue #1090](https://github.com/py-pdf/fpdf2/issues/1090)
* all [`AnnotationDict`](https://py-pdf.github.io/fpdf2/fpdf/annotations.html) properties can now be passed to `FPDF.text_annotation()`, `FPDF.free_text_annotation()`, `FPDF.add_action()`, `FPDF.add_text_markup_annotation()` & `FPDF.ink_annotation()`. This includes `title`, `color`, `border_width`...
Expand Down
2 changes: 1 addition & 1 deletion fpdf/syntax.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def serialize(self, _security_handler=None, _obj_id=None):
if self.with_tz:
assert self.date.tzinfo
if self.date.tzinfo == timezone.utc:
out_str = f"D:{self.date:%Y%m%d%H%M%SZ%H'%M'}"
out_str = f"D:{self.date:%Y%m%d%H%M%SZ}"
else:
out_str = f"D:{self.date:%Y%m%d%H%M%S%z}"
out_str = out_str[:-2] + "'" + out_str[-2:] + "'"
Expand Down
Binary file modified test/add_page_duration.pdf
Binary file not shown.
Binary file modified test/add_page_format.pdf
Binary file not shown.
Binary file modified test/alias_nb_pages.pdf
Binary file not shown.
Binary file modified test/alias_with_text_shaping.pdf
Binary file not shown.
Binary file modified test/barcodes/barcodes_code39.pdf
Binary file not shown.
Binary file modified test/barcodes/barcodes_interleaved2of5.pdf
Binary file not shown.
Binary file modified test/break_or_add_page.pdf
Binary file not shown.
Binary file modified test/break_or_add_page_draw_fill.pdf
Binary file not shown.
Binary file modified test/cell_skew_text.pdf
Binary file not shown.
Binary file modified test/drawing/generated_pdf/blending_images.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified test/drawing/generated_pdf/test_blend_modes_blend_mode_hue_.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified test/drawing/generated_pdf/test_stroke_dash_phase.pdf
Binary file not shown.
Binary file modified test/drawing/generated_pdf/test_stroke_miter_limit.pdf
Binary file not shown.
Binary file modified test/embed_file_all_optionals.pdf
Binary file not shown.
Binary file modified test/embed_file_from_bytes.pdf
Binary file not shown.
Binary file modified test/embed_file_self.pdf
Binary file not shown.
Binary file modified test/encryption/encrypt_fonts.pdf
Binary file not shown.
Binary file modified test/encryption/encrypt_metadata.pdf
Binary file not shown.
Binary file modified test/encryption/encrypt_outline.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_aes128.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_aes256.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_aes256_user_password.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_empty_user_password.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_rc4.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_rc4_permissions.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_rc4_user_password.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_unicode.pdf
Binary file not shown.
Binary file modified test/encryption/encryption_with_hyperlink.pdf
Binary file not shown.
Binary file modified test/encryption/no_encryption.pdf
Binary file not shown.
Binary file modified test/file_attachment_annotation.pdf
Binary file not shown.
Binary file modified test/fonts/add_font_unicode.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-DejaVuSans-Oblique.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-DejaVuSans.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-DejaVuSansMono.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-DroidSansFallback.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-Garuda.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-NotoSans.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-NotoSansSymbols.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-NotoSerif.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-Quicksand-Regular.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-Roboto-Regular.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-TwitterEmoji.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-Waree.pdf
Binary file not shown.
Binary file modified test/fonts/charmap_first_999_chars-cmss12.pdf
Binary file not shown.
Binary file modified test/fonts/fallback_font.pdf
Binary file not shown.
Binary file modified test/fonts/fallback_font_ignore_style.pdf
Binary file not shown.
Binary file modified test/fonts/fallback_font_with_overriden_get_fallback_font.pdf
Binary file not shown.
Binary file modified test/fonts/fonts_emoji_glyph.pdf
Binary file not shown.
Binary file modified test/fonts/fonts_issue_66.pdf
Binary file not shown.
Binary file modified test/fonts/fonts_otf.pdf
Binary file not shown.
Binary file modified test/fonts/fonts_remap_nb.pdf
Binary file not shown.
Binary file modified test/fonts/fonts_set_builtin_font.pdf
Binary file not shown.
Binary file modified test/fonts/fonts_two_mappings.pdf
Binary file not shown.
Binary file modified test/fonts/render_en_dash.pdf
Binary file not shown.
Binary file modified test/fonts/thai_text.pdf
Binary file not shown.
Binary file modified test/fonts/thai_wraps_zerowidthspace.pdf
Binary file not shown.
Binary file modified test/free_text_annotation_all_parameters.pdf
Binary file not shown.
Binary file modified test/free_text_annotation_text_parameter.pdf
Binary file not shown.
Binary file modified test/free_text_annotation_width_parameter.pdf
Binary file not shown.
Binary file modified test/goto_action.pdf
Binary file not shown.
Binary file modified test/goto_remote_action.pdf
Binary file not shown.
Binary file modified test/graphics_context.pdf
Binary file not shown.
Binary file modified test/highlighted.pdf
Binary file not shown.
Binary file modified test/highlighted_over_page_break.pdf
Binary file not shown.
Binary file modified test/html/html_align_paragraph.pdf
Binary file not shown.
Binary file modified test/html/html_blockquote_color.pdf
Binary file not shown.
Binary file modified test/html/html_blockquote_color_using_FontFace.pdf
Binary file not shown.
Binary file modified test/html/html_blockquote_indent.pdf
Binary file not shown.
Binary file modified test/html/html_bold_italic_underline.pdf
Binary file not shown.
Binary file modified test/html/html_custom_heading_sizes.pdf
Binary file not shown.
Binary file modified test/html/html_custom_line_height.pdf
Binary file not shown.
Binary file modified test/html/html_custom_pre_code_font.pdf
Binary file not shown.
Binary file modified test/html/html_customize_ul.pdf
Binary file not shown.
Binary file modified test/html/html_customize_ul_deprecated.pdf
Binary file not shown.
Binary file modified test/html/html_dd_tag_indent_deprecated.pdf
Binary file not shown.
Binary file modified test/html/html_description.pdf
Binary file not shown.
Binary file modified test/html/html_features.pdf
Binary file not shown.
Binary file modified test/html/html_font_color_name.pdf
Binary file not shown.
Binary file modified test/html/html_font_family.pdf
Binary file not shown.
Binary file modified test/html/html_font_tag.pdf
Binary file not shown.
Binary file modified test/html/html_footer_with_call_to_write_html_ko.pdf
Binary file not shown.
Binary file modified test/html/html_footer_with_call_to_write_html_ok.pdf
Binary file not shown.
Binary file modified test/html/html_format_within_p.pdf
Binary file not shown.
Binary file modified test/html/html_heading_above_below.pdf
Binary file not shown.
Binary file modified test/html/html_heading_color_attribute.pdf
Binary file not shown.
Binary file modified test/html/html_heading_hebrew.pdf
Binary file not shown.
Binary file modified test/html/html_headings_color.pdf
Binary file not shown.
Binary file modified test/html/html_headings_line_height.pdf
Binary file not shown.
Binary file modified test/html/html_images.pdf
Binary file not shown.
Binary file modified test/html/html_img_not_overlapping.pdf
Binary file not shown.
Binary file not shown.
Binary file modified test/html/html_li_prefix_color.pdf
Binary file not shown.
Binary file modified test/html/html_li_tag_indent.pdf
Binary file not shown.
Binary file modified test/html/html_link_style.pdf
Binary file not shown.
Binary file modified test/html/html_list_vertical_margin.pdf
Binary file not shown.
Binary file modified test/html/html_ln_outside_p.pdf
Binary file not shown.
Binary file modified test/html/html_long_list_entries.pdf
Binary file not shown.
Binary file modified test/html/html_long_ol_bullets.pdf
Binary file not shown.
Binary file modified test/html/html_measurement_units.pdf
Binary file not shown.
Binary file modified test/html/html_ol_start_and_type.pdf
Binary file not shown.
Binary file modified test/html/html_ol_ul_line_height.pdf
Binary file not shown.
Binary file modified test/html/html_page_break_after.pdf
Binary file not shown.
Binary file modified test/html/html_page_break_before.pdf
Binary file not shown.
Binary file modified test/html/html_preserve_initial_text_color.pdf
Binary file not shown.
Binary file modified test/html/html_sections.pdf
Binary file not shown.
Binary file modified test/html/html_superscript.pdf
Binary file not shown.
Binary file modified test/html/html_table_honoring_align.pdf
Binary file not shown.
Binary file modified test/html/html_table_line_separators.pdf
Binary file not shown.
Binary file modified test/html/html_table_simple.pdf
Binary file not shown.
Binary file modified test/html/html_table_th_inside_tr_issue_137.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_bgcolor.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_border.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_data_that_contains_entity_names.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_empty_cell_contents.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_font_tags_used_to_set_text_color.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_img.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_img_without_explicit_dimensions.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_imgs_captions_and_colspan.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_multi_lines_text.pdf
Binary file not shown.
Binary file not shown.
Binary file modified test/html/html_table_with_null_text_in_span_cell.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_only_tds.pdf
Binary file not shown.
Binary file modified test/html/html_table_with_width_and_align.pdf
Binary file not shown.
Binary file modified test/html/html_title.pdf
Binary file not shown.
Binary file modified test/html/html_title_duplicated.pdf
Binary file not shown.
Binary file modified test/html/html_title_in_body.pdf
Binary file not shown.
Binary file modified test/html/html_title_with_render_title_tag.pdf
Binary file not shown.
Binary file modified test/html/html_ul_type.pdf
Binary file not shown.
Binary file modified test/html/html_unorthodox_headings_hierarchy.pdf
Binary file not shown.
Binary file modified test/html/html_whitespace_handling.pdf
Binary file not shown.
Binary file modified test/html/issue_156.pdf
Binary file not shown.
Binary file modified test/hyperlinks.pdf
Binary file not shown.
Binary file modified test/image/alt_text/alt_text_and_title.pdf
Binary file not shown.
Binary file modified test/image/alt_text/test_alt_text_on_two_pages.pdf
Binary file not shown.
Binary file modified test/image/elliptic_clip.pdf
Binary file not shown.
Binary file modified test/image/full_height_image.pdf
Binary file not shown.
Binary file modified test/image/full_pdf_height_image.pdf
Binary file not shown.
Binary file modified test/image/full_pdf_width_image.pdf
Binary file not shown.
Binary file modified test/image/full_width_image.pdf
Binary file not shown.
Binary file modified test/image/image_fit_in_rect.pdf
Binary file not shown.
Binary file modified test/image/image_fit_in_rect_with_c_align_center.pdf
Binary file not shown.
Binary file not shown.
Binary file modified test/image/image_png_url.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_bmp.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_gif.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_flatedecode.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_flatedecode_windows.pdf
100644 → 100755
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_icc.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_icc_invalid.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_jpxdecode.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_lzwdecode.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_jpg_lzwdecode_windows.pdf
100644 → 100755
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_png.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_png_alpha.pdf
Binary file not shown.
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_png_alpha_dctdecode_windows.pdf
100644 → 100755
Binary file not shown.
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_png_monochromatic.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_tiff.pdf
Binary file not shown.
Binary file modified test/image/image_types/image_types_insert_tiff_cmyk.pdf
Binary file not shown.
Binary file modified test/image/image_types/images_types_insert_jpg_cmyk.pdf
Binary file not shown.
Binary file modified test/image/image_types/insert_pillow_issue_139.pdf
Binary file not shown.
Binary file modified test/image/image_with_explicit_dimensions.pdf
Binary file not shown.
Binary file modified test/image/image_x_align_center.pdf
Binary file not shown.
Binary file modified test/image/image_x_align_right.pdf
Binary file not shown.
Binary file modified test/image/load_base64_data.pdf
Binary file not shown.
Binary file modified test/image/oversized_images_downscale_biggest_1st.pdf
Binary file not shown.
Binary file modified test/image/oversized_images_downscale_biggest_2nd.pdf
Binary file not shown.
Binary file modified test/image/oversized_images_downscale_simple.pdf
Binary file not shown.
Binary file modified test/image/oversized_images_downscale_twice.pdf
Binary file not shown.
Binary file modified test/image/page_thumbnail.pdf
Binary file not shown.
Binary file modified test/image/png_images/image_png_insert_png_files.pdf
Binary file not shown.
Binary file modified test/image/png_indexed/image_png_indexed_no_transparency.pdf
Binary file not shown.
Binary file modified test/image/png_indexed/image_png_indexed_transparency.pdf
Binary file not shown.
Binary file modified test/image/rect_clip.pdf
Binary file not shown.
Binary file modified test/image/round_clip.pdf
Binary file not shown.
Binary file modified test/image/svg_image.pdf
Binary file not shown.
Binary file modified test/image/svg_image_alt_text_title.pdf
Binary file not shown.
Binary file modified test/image/svg_image_alt_text_two_pages.pdf
Binary file not shown.
Binary file modified test/image/svg_image_fit_rect.pdf
Binary file not shown.
Binary file modified test/image/svg_image_fixed_dimensions.pdf
Binary file not shown.
Binary file modified test/image/svg_image_from_bytesio.pdf
Binary file not shown.
Binary file modified test/image/svg_image_no_dimensions.pdf
Binary file not shown.
Binary file modified test/image/svg_image_no_viewbox.pdf
Binary file not shown.
Binary file modified test/image/svg_image_style_inherited_from_fpdf.pdf
Binary file not shown.
Binary file modified test/image/svg_image_with_custom_size.pdf
Binary file not shown.
Binary file modified test/image/svg_image_with_custom_size_and_no_viewbox.pdf
Binary file not shown.
Binary file modified test/image/svg_image_with_custom_width.pdf
Binary file not shown.
Binary file modified test/image/svg_image_with_custom_width_and_no_dimensions.pdf
Binary file not shown.
Binary file modified test/image/svg_image_with_custom_width_and_no_viewbox.pdf
Binary file not shown.
Binary file modified test/image/svg_image_with_no_dimensions_and_custom_width.pdf
Binary file not shown.
Binary file modified test/ink_annotation.pdf
Binary file not shown.
Binary file modified test/inserting_same_page_link_twice.pdf
Binary file not shown.
Binary file modified test/internal_links.pdf
Binary file not shown.
Binary file modified test/later_call_to_set_link.pdf
Binary file not shown.
Binary file modified test/launch_action.pdf
Binary file not shown.
Binary file modified test/layout/page_background.pdf
Binary file not shown.
Binary file modified test/layout/set_no_margin.pdf
Binary file not shown.
Binary file modified test/layout/unit_cm.pdf
Binary file not shown.
Binary file modified test/layout/unit_default.pdf
Binary file not shown.
Binary file modified test/layout/unit_float.pdf
Binary file not shown.
Binary file modified test/layout/unit_in.pdf
Binary file not shown.
Binary file modified test/layout/unit_int.pdf
Binary file not shown.
Binary file modified test/layout/unit_mm.pdf
Binary file not shown.
Binary file modified test/layout/unit_pt.pdf
Binary file not shown.
Binary file modified test/link_alt_text.pdf
Binary file not shown.
Binary file modified test/link_border.pdf
Binary file not shown.
Binary file modified test/link_to_other_document.pdf
Binary file not shown.
Binary file modified test/link_with_zoom_and_shift.pdf
Binary file not shown.
Binary file modified test/local_context_font_size_and_header_footer.pdf
Binary file not shown.
Binary file modified test/local_context_inherited_shared_props.pdf
Binary file not shown.
Binary file modified test/local_context_init.pdf
Binary file not shown.
Binary file modified test/local_context_shared_props.pdf
Binary file not shown.
Binary file modified test/metadata/custom_file_id.pdf
Binary file not shown.
Binary file modified test/metadata/custom_viewer_preferences.pdf
Binary file not shown.
Binary file modified test/metadata/default_viewer_preferences.pdf
Binary file not shown.
Binary file modified test/metadata/layout-alias-continuous.pdf
Binary file not shown.
Binary file modified test/metadata/layout-alias-default.pdf
Binary file not shown.
Binary file modified test/metadata/layout-alias-single.pdf
Binary file not shown.
Binary file modified test/metadata/layout-alias-two.pdf
Binary file not shown.
Binary file modified test/metadata/metadata_unicode.pdf
Binary file not shown.
Binary file modified test/metadata/no_file_id.pdf
Binary file not shown.
Binary file modified test/metadata/page-layout-ONE_COLUMN.pdf
Binary file not shown.
Binary file modified test/metadata/page-layout-SINGLE_PAGE.pdf
Binary file not shown.
Binary file modified test/metadata/page-layout-TWO_COLUMN_LEFT.pdf
Binary file not shown.
Binary file modified test/metadata/page-layout-TWO_COLUMN_RIGHT.pdf
Binary file not shown.
Binary file modified test/metadata/page-layout-TWO_PAGE_LEFT.pdf
Binary file not shown.
Binary file modified test/metadata/page-layout-TWO_PAGE_RIGHT.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-FULL_SCREEN.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-USE_ATTACHMENTS.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-USE_NONE.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-USE_OC.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-USE_OUTLINES.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-USE_THUMBS.pdf
Binary file not shown.
Binary file modified test/metadata/page-mode-zoom_numeric.pdf
Binary file not shown.
Binary file modified test/metadata/put_info_all.pdf
Binary file not shown.
Binary file modified test/metadata/put_info_some.pdf
Binary file not shown.
Binary file modified test/metadata/setting_old_date.pdf
Binary file not shown.
Binary file modified test/metadata/xmp_metadata.pdf
Binary file not shown.
Binary file modified test/metadata/xmp_metadata_unicode.pdf
Binary file not shown.
Binary file modified test/metadata/zoom-default.pdf
Binary file not shown.
Binary file modified test/metadata/zoom-fullpage.pdf
Binary file not shown.
Binary file modified test/metadata/zoom-fullwidth.pdf
Binary file not shown.
Binary file modified test/metadata/zoom-real.pdf
Binary file not shown.
Binary file modified test/mirror.pdf
Binary file not shown.
Binary file modified test/mirror_cell.pdf
Binary file not shown.
Binary file modified test/mirror_multi_cell.pdf
Binary file not shown.
Binary file modified test/mirror_text.pdf
Binary file not shown.
Binary file modified test/mirror_with_angle_as_number.pdf
Binary file not shown.
Binary file modified test/multi_cell_skew_text.pdf
Binary file not shown.
Binary file modified test/named_actions.pdf
Binary file not shown.
Binary file modified test/new_page_graphics_state.pdf
Binary file not shown.
Binary file modified test/outline/2_pages_outline.pdf
Binary file not shown.
Binary file modified test/outline/html_toc.pdf
Binary file not shown.
Binary file modified test/outline/html_toc_2_pages.pdf
Binary file not shown.
Loading

0 comments on commit 5b7fce3

Please sign in to comment.