├── .clippy.toml ├── .github └── workflows │ └── docs.yml ├── .gitignore ├── .maestro ├── app-launch-ios.yaml ├── app-launch.yaml └── config.yaml ├── .mise.toml ├── .npmrc ├── .oxfmtrc.json ├── .vscode ├── extensions.json └── settings.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── agent.md ├── bun.lock ├── crates └── hwp-core │ ├── Cargo.toml │ ├── README.md │ ├── src │ ├── cfb.rs │ ├── decompress.rs │ ├── document │ │ ├── bindata │ │ │ └── mod.rs │ │ ├── bodytext │ │ │ ├── char_shape.rs │ │ │ ├── chart_data.rs │ │ │ ├── constants.rs │ │ │ ├── control_char.rs │ │ │ ├── ctrl_data.rs │ │ │ ├── ctrl_header.rs │ │ │ ├── eqedit.rs │ │ │ ├── footnote_shape.rs │ │ │ ├── form_object.rs │ │ │ ├── line_seg.rs │ │ │ ├── list_header.rs │ │ │ ├── memo_list.rs │ │ │ ├── memo_shape.rs │ │ │ ├── mod.rs │ │ │ ├── page_border_fill.rs │ │ │ ├── page_def.rs │ │ │ ├── para_header.rs │ │ │ ├── range_tag.rs │ │ │ ├── record_tree.rs │ │ │ ├── shape_component.rs │ │ │ ├── shape_component_arc.rs │ │ │ ├── shape_component_container.rs │ │ │ ├── shape_component_curve.rs │ │ │ ├── shape_component_ellipse.rs │ │ │ ├── shape_component_line.rs │ │ │ ├── shape_component_ole.rs │ │ │ ├── shape_component_picture.rs │ │ │ ├── shape_component_polygon.rs │ │ │ ├── shape_component_rectangle.rs │ │ │ ├── shape_component_textart.rs │ │ │ ├── shape_component_unknown.rs │ │ │ ├── table.rs │ │ │ └── video_data.rs │ │ ├── constants.rs │ │ ├── docinfo │ │ │ ├── bin_data.rs │ │ │ ├── border_fill.rs │ │ │ ├── bullet.rs │ │ │ ├── char_shape.rs │ │ │ ├── compatible_document.rs │ │ │ ├── constants.rs │ │ │ ├── distribute_doc_data.rs │ │ │ ├── doc_data.rs │ │ │ ├── document_properties.rs │ │ │ ├── face_name.rs │ │ │ ├── forbidden_char.rs │ │ │ ├── id_mappings.rs │ │ │ ├── layout_compatibility.rs │ │ │ ├── memo_shape.rs │ │ │ ├── mod.rs │ │ │ ├── numbering.rs │ │ │ ├── para_shape.rs │ │ │ ├── style.rs │ │ │ ├── tab_def.rs │ │ │ ├── track_change.rs │ │ │ ├── track_change_author.rs │ │ │ └── track_change_content.rs │ │ ├── fileheader │ │ │ ├── constants.rs │ │ │ ├── mod.rs │ │ │ └── serialize.rs │ │ ├── mod.rs │ │ ├── preview_image.rs │ │ ├── preview_text.rs │ │ ├── scripts │ │ │ ├── mod.rs │ │ │ ├── script.rs │ │ │ └── script_version.rs │ │ ├── summary_information.rs │ │ └── xml_template.rs │ ├── error.rs │ ├── lib.rs │ ├── types.rs │ └── viewer │ │ ├── canvas │ │ └── mod.rs │ │ ├── core │ │ ├── bodytext.rs │ │ ├── mod.rs │ │ ├── paragraph.rs │ │ ├── renderer.rs │ │ └── table.rs │ │ ├── html │ │ ├── common.rs │ │ ├── document │ │ │ ├── bodytext │ │ │ │ ├── list_header.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── para_text.rs │ │ │ │ ├── paragraph.rs │ │ │ │ ├── shape_component.rs │ │ │ │ ├── shape_component_picture.rs │ │ │ │ └── table.rs │ │ │ ├── docinfo.rs │ │ │ ├── fileheader.rs │ │ │ └── mod.rs │ │ ├── image.rs │ │ ├── line_segment.rs │ │ ├── mod.rs │ │ ├── page.rs │ │ ├── styles.rs │ │ ├── table.rs │ │ └── text.rs │ │ ├── markdown │ │ ├── collect.rs │ │ ├── common.rs │ │ ├── ctrl_header │ │ │ ├── column_def.rs │ │ │ ├── endnote.rs │ │ │ ├── footer.rs │ │ │ ├── footnote.rs │ │ │ ├── header.rs │ │ │ ├── mod.rs │ │ │ ├── page_number.rs │ │ │ ├── shape_object.rs │ │ │ └── table.rs │ │ ├── document │ │ │ ├── bodytext │ │ │ │ ├── list_header.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── para_text.rs │ │ │ │ ├── paragraph.rs │ │ │ │ ├── shape_component.rs │ │ │ │ ├── shape_component_picture.rs │ │ │ │ └── table.rs │ │ │ ├── docinfo.rs │ │ │ ├── fileheader.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── renderer.rs │ │ └── utils.rs │ │ ├── mod.rs │ │ └── pdf │ │ └── mod.rs │ └── tests │ ├── cfb_tests.rs │ ├── common.rs │ ├── decompress_tests.rs │ ├── fileheader_tests.rs │ ├── parser_tests.rs │ ├── snapshot_tests.rs │ └── snapshots │ ├── aligns.html │ ├── aligns.json │ ├── aligns.md │ ├── charshape.html │ ├── charshape.json │ ├── charshape.md │ ├── charstyle.html │ ├── charstyle.json │ ├── charstyle.md │ ├── example.html │ ├── example.json │ ├── example.md │ ├── facename.html │ ├── facename.json │ ├── facename.md │ ├── facename2.html │ ├── facename2.json │ ├── facename2.md │ ├── footnote-endnote.html │ ├── footnote-endnote.json │ ├── footnote-endnote.md │ ├── headerfooter.html │ ├── headerfooter.json │ ├── headerfooter.md │ ├── hwpSummaryInformation.html │ ├── hwpSummaryInformation.json │ ├── hwpSummaryInformation.md │ ├── images │ ├── BIN0001.jpg │ ├── BIN0002.bmp │ ├── BIN0003.bmp │ ├── BIN0004.jpg │ └── noori │ │ ├── BIN0001.jpg │ │ ├── BIN0002.bmp │ │ ├── BIN0003.bmp │ │ └── BIN0004.jpg │ ├── issue144-fields-crossing-lineseg-boundary.html │ ├── issue144-fields-crossing-lineseg-boundary.json │ ├── issue144-fields-crossing-lineseg-boundary.md │ ├── issue30.html │ ├── issue30.json │ ├── issue30.md │ ├── linespacing.html │ ├── linespacing.json │ ├── linespacing.md │ ├── lists-bullet.html │ ├── lists-bullet.json │ ├── lists-bullet.md │ ├── lists.html │ ├── lists.json │ ├── lists.md │ ├── matrix.html │ ├── matrix.json │ ├── matrix.md │ ├── multicolumns-in-common-controls.html │ ├── multicolumns-in-common-controls.json │ ├── multicolumns-in-common-controls.md │ ├── multicolumns-layout.html │ ├── multicolumns-layout.json │ ├── multicolumns-layout.md │ ├── multicolumns-widths.html │ ├── multicolumns-widths.json │ ├── multicolumns-widths.md │ ├── multicolumns.html │ ├── multicolumns.json │ ├── multicolumns.md │ ├── noori.html │ ├── noori.json │ ├── noori.md │ ├── outline.html │ ├── outline.json │ ├── outline.md │ ├── page.html │ ├── page.json │ ├── page.md │ ├── pagedefs.html │ ├── pagedefs.json │ ├── pagedefs.md │ ├── parashape.html │ ├── parashape.json │ ├── parashape.md │ ├── sample-5017-pics.json │ ├── sample-5017-pics.md │ ├── sample-5017.json │ ├── sample-5017.md │ ├── selfintroduce.html │ ├── selfintroduce.json │ ├── selfintroduce.md │ ├── shapecontainer-2.json │ ├── shapecontainer-2.md │ ├── shapeline.html │ ├── shapeline.json │ ├── shapeline.md │ ├── shapepict-scaled.json │ ├── shapepict-scaled.md │ ├── shaperect.html │ ├── shaperect.json │ ├── shaperect.md │ ├── snapshot_tests__aligns_html.snap │ ├── snapshot_tests__aligns_json.snap │ ├── snapshot_tests__aligns_markdown.snap │ ├── snapshot_tests__charshape_html.snap │ ├── snapshot_tests__charshape_json.snap │ ├── snapshot_tests__charshape_markdown.snap │ ├── snapshot_tests__charstyle_html.snap │ ├── snapshot_tests__charstyle_json.snap │ ├── snapshot_tests__charstyle_markdown.snap │ ├── snapshot_tests__example_html.snap │ ├── snapshot_tests__example_json.snap │ ├── snapshot_tests__example_markdown.snap │ ├── snapshot_tests__facename2_html.snap │ ├── snapshot_tests__facename2_json.snap │ ├── snapshot_tests__facename2_markdown.snap │ ├── snapshot_tests__facename_html.snap │ ├── snapshot_tests__facename_json.snap │ ├── snapshot_tests__facename_markdown.snap │ ├── snapshot_tests__footnote_endnote_html.snap │ ├── snapshot_tests__footnote_endnote_json.snap │ ├── snapshot_tests__footnote_endnote_markdown.snap │ ├── snapshot_tests__headerfooter_html.snap │ ├── snapshot_tests__headerfooter_json.snap │ ├── snapshot_tests__headerfooter_markdown.snap │ ├── snapshot_tests__hwpSummaryInformation_html.snap │ ├── snapshot_tests__hwpSummaryInformation_json.snap │ ├── snapshot_tests__hwpSummaryInformation_markdown.snap │ ├── snapshot_tests__issue144_fields_crossing_lineseg_boundary_html.snap │ ├── snapshot_tests__issue144_fields_crossing_lineseg_boundary_json.snap │ ├── snapshot_tests__issue144_fields_crossing_lineseg_boundary_markdown.snap │ ├── snapshot_tests__issue30_html.snap │ ├── snapshot_tests__issue30_json.snap │ ├── snapshot_tests__issue30_markdown.snap │ ├── snapshot_tests__linespacing_html.snap │ ├── snapshot_tests__linespacing_json.snap │ ├── snapshot_tests__linespacing_markdown.snap │ ├── snapshot_tests__lists_bullet_html.snap │ ├── snapshot_tests__lists_bullet_json.snap │ ├── snapshot_tests__lists_bullet_markdown.snap │ ├── snapshot_tests__lists_html.snap │ ├── snapshot_tests__lists_json.snap │ ├── snapshot_tests__lists_markdown.snap │ ├── snapshot_tests__matrix_html.snap │ ├── snapshot_tests__matrix_json.snap │ ├── snapshot_tests__matrix_markdown.snap │ ├── snapshot_tests__multicolumns_html.snap │ ├── snapshot_tests__multicolumns_in_common_controls_html.snap │ ├── snapshot_tests__multicolumns_in_common_controls_json.snap │ ├── snapshot_tests__multicolumns_in_common_controls_markdown.snap │ ├── snapshot_tests__multicolumns_json.snap │ ├── snapshot_tests__multicolumns_layout_html.snap │ ├── snapshot_tests__multicolumns_layout_json.snap │ ├── snapshot_tests__multicolumns_layout_markdown.snap │ ├── snapshot_tests__multicolumns_markdown.snap │ ├── snapshot_tests__multicolumns_widths_html.snap │ ├── snapshot_tests__multicolumns_widths_json.snap │ ├── snapshot_tests__multicolumns_widths_markdown.snap │ ├── snapshot_tests__noori_html.snap │ ├── snapshot_tests__noori_json.snap │ ├── snapshot_tests__noori_markdown.snap │ ├── snapshot_tests__outline_html.snap │ ├── snapshot_tests__outline_json.snap │ ├── snapshot_tests__outline_markdown.snap │ ├── snapshot_tests__page_html.snap │ ├── snapshot_tests__page_json.snap │ ├── snapshot_tests__page_markdown.snap │ ├── snapshot_tests__pagedefs_html.snap │ ├── snapshot_tests__pagedefs_json.snap │ ├── snapshot_tests__pagedefs_markdown.snap │ ├── snapshot_tests__parashape_html.snap │ ├── snapshot_tests__parashape_json.snap │ ├── snapshot_tests__parashape_markdown.snap │ ├── snapshot_tests__selfintroduce_html.snap │ ├── snapshot_tests__selfintroduce_json.snap │ ├── snapshot_tests__selfintroduce_markdown.snap │ ├── snapshot_tests__shapeline_html.snap │ ├── snapshot_tests__shapeline_json.snap │ ├── snapshot_tests__shapeline_markdown.snap │ ├── snapshot_tests__shaperect_html.snap │ ├── snapshot_tests__shaperect_json.snap │ ├── snapshot_tests__shaperect_markdown.snap │ ├── snapshot_tests__strikethrough_html.snap │ ├── snapshot_tests__strikethrough_json.snap │ ├── snapshot_tests__strikethrough_markdown.snap │ ├── snapshot_tests__tabdef_html.snap │ ├── snapshot_tests__tabdef_json.snap │ ├── snapshot_tests__tabdef_markdown.snap │ ├── snapshot_tests__table_caption_html.snap │ ├── snapshot_tests__table_caption_json.snap │ ├── snapshot_tests__table_caption_markdown.snap │ ├── snapshot_tests__table_html.snap │ ├── snapshot_tests__table_json.snap │ ├── snapshot_tests__table_markdown.snap │ ├── snapshot_tests__table_position_html.snap │ ├── snapshot_tests__table_position_json.snap │ ├── snapshot_tests__table_position_markdown.snap │ ├── snapshot_tests__textbox_html.snap │ ├── snapshot_tests__textbox_json.snap │ ├── snapshot_tests__textbox_markdown.snap │ ├── snapshot_tests__underline_styles_html.snap │ ├── snapshot_tests__underline_styles_json.snap │ ├── snapshot_tests__underline_styles_markdown.snap │ ├── snapshot_tests__viewtext_html.snap │ ├── snapshot_tests__viewtext_json.snap │ ├── snapshot_tests__viewtext_markdown.snap │ ├── strikethrough.html │ ├── strikethrough.json │ ├── strikethrough.md │ ├── tabdef.html │ ├── tabdef.json │ ├── tabdef.md │ ├── table-caption.html │ ├── table-caption.json │ ├── table-caption.md │ ├── table-position.html │ ├── table-position.json │ ├── table-position.md │ ├── table.html │ ├── table.json │ ├── table.md │ ├── textbox.html │ ├── textbox.json │ ├── textbox.md │ ├── underline-styles.html │ ├── underline-styles.json │ ├── underline-styles.md │ ├── viewtext.html │ ├── viewtext.json │ └── viewtext.md ├── docs ├── README.md ├── components │ ├── HwpDemo.css │ ├── HwpDemo.tsx │ ├── HwpDemoWrapper.tsx │ ├── PlatformTabs.css │ └── PlatformTabs.tsx ├── docs │ ├── _nav.json │ ├── api │ │ ├── _meta.json │ │ ├── fileHeader.mdx │ │ ├── index.md │ │ ├── parseHwp.md │ │ ├── toJson.mdx │ │ └── toMarkdown.mdx │ ├── backlog │ │ ├── 00_overview.md │ │ ├── 10_current_tasks.md │ │ ├── _meta.json │ │ └── index.md │ ├── guide │ │ ├── _meta.json │ │ ├── cli.mdx │ │ ├── demo.mdx │ │ ├── development.mdx │ │ ├── examples.mdx │ │ ├── getting-started.mdx │ │ ├── index.mdx │ │ └── installation.mdx │ ├── index.mdx │ ├── public │ │ ├── demo │ │ │ └── noori.hwp │ │ ├── logo.png │ │ └── logo.svg │ ├── roadmap │ │ ├── _meta.json │ │ └── index.md │ └── spec │ │ ├── _meta.json │ │ ├── chart.md │ │ ├── distribution.md │ │ ├── formula.md │ │ ├── hwp-3.0-hwpml.md │ │ ├── hwp-5.0.md │ │ ├── index.md │ │ └── types.md ├── package.json ├── rspress.config.ts └── tsconfig.json ├── examples ├── cli │ ├── README.md │ └── package.json ├── fixtures │ ├── aligns.hwp │ ├── borderfill.hwp │ ├── charshape.hwp │ ├── charstyle.hwp │ ├── example.hwp │ ├── facename.hwp │ ├── facename2.hwp │ ├── footnote-endnote.hwp │ ├── headerfooter.hwp │ ├── hwpSummaryInformation.hwp │ ├── issue144-fields-crossing-lineseg-boundary.hwp │ ├── issue30.hwp │ ├── linespacing.html │ ├── linespacing.hwp │ ├── linespacing_style.css │ ├── lists-bullet.html │ ├── lists-bullet.hwp │ ├── lists-bullet_style.css │ ├── lists.hwp │ ├── matrix.hwp │ ├── multicolumns-in-common-controls.html │ ├── multicolumns-in-common-controls.hwp │ ├── multicolumns-in-common-controls_style.css │ ├── multicolumns-layout.hwp │ ├── multicolumns-widths.hwp │ ├── multicolumns.hwp │ ├── noori-1page.jpg │ ├── noori-2page.jpg │ ├── noori-3page.jpg │ ├── noori.html │ ├── noori.hwp │ ├── noori_hd1.png │ ├── noori_hd2.png │ ├── noori_hd3.png │ ├── noori_hd4.png │ ├── noori_style.css │ ├── outline.hwp │ ├── page.hwp │ ├── pagedefs.html │ ├── pagedefs.hwp │ ├── pagedefs_style.css │ ├── parashape.hwp │ ├── password-12345.hwp │ ├── sample-5017-pics.hwp │ ├── sample-5017.hwp │ ├── selfintroduce.hwp │ ├── shapecontainer-2.hwp │ ├── shapeline.hwp │ ├── shapepict-scaled.hwp │ ├── shaperect.hwp │ ├── strikethrough.html │ ├── strikethrough.hwp │ ├── strikethrough_style.css │ ├── tabdef.hwp │ ├── table-caption.hwp │ ├── table-position.html │ ├── table-position.hwp │ ├── table-position_style.css │ ├── table.html │ ├── table.hwp │ ├── table_style.css │ ├── textbox.hwp │ ├── underline-styles.hwp │ └── viewtext.hwp ├── node │ ├── README.md │ ├── noori.hwp │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── test-markdown.ts │ └── tsconfig.json ├── react-native │ ├── .bundle │ │ └── config │ ├── .watchmanconfig │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── reactnativeexample │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── raw │ │ │ │ └── noori.hwp │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── global.d.ts │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── ReactNativeExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ReactNativeExample.xcscheme │ │ ├── ReactNativeExample.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── ReactNativeExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ └── noori.hwp │ ├── jest.config.js │ ├── metro.config.js │ ├── noori.hwp │ ├── package.json │ ├── react-native.config.js │ ├── src │ │ └── App.tsx │ └── tsconfig.json └── web │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ ├── noori.hwp │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── buffer-polyfill.ts │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── legacy ├── LICENSE ├── README.md ├── cfb.js ├── hwp.png ├── hwpjs.css ├── hwpjs.js ├── index.html ├── noori.hwp ├── pako.js └── work │ └── working.md ├── oxlint.json ├── package.json ├── packages └── hwpjs │ ├── .cargo │ └── config.toml │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ ├── renovate.json │ └── workflows │ │ └── CI.yml │ ├── .prettierignore │ ├── .taplo.toml │ ├── CONTRIBUTING.md │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Hwpjs.podspec │ ├── LICENSE │ ├── README.md │ ├── __test__ │ └── parseHwpToMarkdown.spec.ts │ ├── android │ ├── CMakeLists.txt │ ├── build.gradle │ ├── gradle.properties │ ├── src │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── rs │ │ │ │ └── craby │ │ │ │ └── hwpjs │ │ │ │ └── HwpjsPackage.kt │ │ │ └── jni │ │ │ ├── OnLoad.cpp │ │ │ ├── include │ │ │ ├── CrabySignals.h │ │ │ ├── cxx.h │ │ │ └── ffi.rs.h │ │ │ └── src │ │ │ └── ffi.rs.cc │ └── stubs │ │ ├── CMakeLists.txt │ │ ├── Hwpjs_stub.cpp │ │ └── Hwpjs_stub.h │ ├── benchmark │ ├── bench.ts │ ├── package.json │ └── tsconfig.json │ ├── bin │ └── hwpjs.js │ ├── build.rs │ ├── cpp │ ├── CrabyUtils.hpp │ ├── CxxHwpjsModule.cpp │ ├── CxxHwpjsModule.hpp │ └── bridging-generated.hpp │ ├── craby.toml │ ├── crates │ └── lib │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── include │ │ └── CrabySignals.h │ │ └── src │ │ ├── ffi.rs │ │ ├── generated.rs │ │ ├── hwpjs_impl.rs │ │ └── lib.rs │ ├── dist │ ├── browser.js │ ├── cli │ │ ├── commands │ │ │ ├── batch.js │ │ │ ├── extract-images.js │ │ │ ├── info.js │ │ │ ├── to-json.js │ │ │ └── to-markdown.js │ │ └── index.js │ ├── hwpjs-napi.wasi-browser.js │ ├── hwpjs-napi.wasi.cjs │ ├── hwpjs.wasi-browser.js │ ├── hwpjs.wasi.cjs │ ├── index.d.ts │ ├── index.js │ ├── react-native │ │ ├── index.cjs │ │ ├── index.cjs.map │ │ ├── index.d.cts │ │ ├── index.d.mts │ │ ├── index.mjs │ │ └── index.mjs.map │ ├── wasi-worker-browser.mjs │ └── wasi-worker.mjs │ ├── ios │ ├── HwpjsModuleProvider.mm │ ├── include │ │ ├── CrabySignals.h │ │ ├── cxx.h │ │ └── ffi.rs.h │ └── src │ │ └── ffi.rs.cc │ ├── npm │ ├── darwin-arm64 │ │ ├── README.md │ │ ├── hwpjs.darwin-arm64.node │ │ └── package.json │ ├── darwin-x64 │ │ ├── README.md │ │ ├── hwpjs.darwin-x64.node │ │ └── package.json │ ├── linux-x64-gnu │ │ ├── README.md │ │ ├── hwpjs.linux-x64-gnu.node │ │ └── package.json │ ├── wasm32-wasi │ │ ├── README.md │ │ ├── hwpjs.wasi-browser.js │ │ ├── hwpjs.wasi.cjs │ │ ├── hwpjs.wasm32-wasi.wasm │ │ ├── package.json │ │ ├── wasi-worker-browser.mjs │ │ └── wasi-worker.mjs │ ├── win32-arm64-msvc │ │ ├── README.md │ │ ├── hwpjs.win32-arm64-msvc.node │ │ └── package.json │ ├── win32-ia32-msvc │ │ ├── README.md │ │ ├── hwpjs.win32-ia32-msvc.node │ │ └── package.json │ └── win32-x64-msvc │ │ ├── README.md │ │ ├── hwpjs.win32-x64-msvc.node │ │ └── package.json │ ├── package.json │ ├── react-native.config.js │ ├── rust-toolchain.toml │ ├── scripts │ ├── check-package-size.sh │ ├── cleanup-root.ts │ ├── create-target-link.ts │ ├── publish.sh │ ├── releash.sh │ └── rename-wasm.ts │ ├── src-cli │ ├── commands │ │ ├── batch.ts │ │ ├── extract-images.ts │ │ ├── info.ts │ │ ├── to-json.ts │ │ └── to-markdown.ts │ └── index.ts │ ├── src-reactnative │ ├── NativeReactNative.ts │ └── index.ts │ ├── src │ └── lib.rs │ ├── test-markdown.js │ ├── tsconfig.cli.json │ ├── tsconfig.json │ ├── tsdown.config.ts │ └── wasi-worker-browser.mjs ├── rustfmt.toml └── scripts └── test-ios-e2e.js /.clippy.toml: -------------------------------------------------------------------------------- 1 | # Clippy configuration 2 | avoid-breaking-exported-api = false 3 | msrv = "1.70" 4 | 5 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.maestro/app-launch-ios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.maestro/app-launch-ios.yaml -------------------------------------------------------------------------------- /.maestro/app-launch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.maestro/app-launch.yaml -------------------------------------------------------------------------------- /.maestro/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.maestro/config.yaml -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.mise.toml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.npmrc -------------------------------------------------------------------------------- /.oxfmtrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.oxfmtrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/README.md -------------------------------------------------------------------------------- /agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/agent.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/bun.lock -------------------------------------------------------------------------------- /crates/hwp-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/Cargo.toml -------------------------------------------------------------------------------- /crates/hwp-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/README.md -------------------------------------------------------------------------------- /crates/hwp-core/src/cfb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/cfb.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/decompress.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bindata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bindata/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/char_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/char_shape.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/chart_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/chart_data.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/constants.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/control_char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/control_char.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/ctrl_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/ctrl_data.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/ctrl_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/ctrl_header.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/eqedit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/eqedit.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/footnote_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/footnote_shape.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/form_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/form_object.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/line_seg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/line_seg.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/list_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/list_header.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/memo_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/memo_list.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/memo_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/memo_shape.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/page_border_fill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/page_border_fill.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/page_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/page_def.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/para_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/para_header.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/range_tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/range_tag.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/record_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/record_tree.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_arc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_arc.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_container.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_curve.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_ellipse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_ellipse.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_line.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_ole.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_ole.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_picture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_picture.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_polygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_polygon.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_rectangle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_rectangle.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_textart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_textart.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/shape_component_unknown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/shape_component_unknown.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/table.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/bodytext/video_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/bodytext/video_data.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/constants.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/bin_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/bin_data.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/border_fill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/border_fill.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/bullet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/bullet.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/char_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/char_shape.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/compatible_document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/compatible_document.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/constants.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/distribute_doc_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/distribute_doc_data.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/doc_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/doc_data.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/document_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/document_properties.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/face_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/face_name.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/forbidden_char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/forbidden_char.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/id_mappings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/id_mappings.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/layout_compatibility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/layout_compatibility.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/memo_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/memo_shape.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/numbering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/numbering.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/para_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/para_shape.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/style.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/tab_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/tab_def.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/track_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/track_change.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/track_change_author.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/track_change_author.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/docinfo/track_change_content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/docinfo/track_change_content.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/fileheader/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/fileheader/constants.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/fileheader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/fileheader/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/fileheader/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/fileheader/serialize.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/preview_image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/preview_image.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/preview_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/preview_text.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/scripts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/scripts/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/scripts/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/scripts/script.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/scripts/script_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/scripts/script_version.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/summary_information.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/summary_information.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/document/xml_template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/document/xml_template.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/error.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/lib.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/types.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/canvas/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/canvas/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/core/bodytext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/core/bodytext.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/core/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/core/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/core/paragraph.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/core/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/core/renderer.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/core/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/core/table.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/common.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/list_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/list_header.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/para_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/para_text.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/paragraph.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/shape_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/shape_component.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/shape_component_picture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/shape_component_picture.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/bodytext/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/bodytext/table.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/docinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/docinfo.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/fileheader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/fileheader.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/document/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/document/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/image.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/line_segment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/line_segment.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/page.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/styles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/styles.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/table.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/html/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/html/text.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/collect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/collect.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/common.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/column_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/column_def.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/endnote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/endnote.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/footer.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/footnote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/footnote.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/header.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/page_number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/page_number.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/shape_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/shape_object.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/ctrl_header/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/ctrl_header/table.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/list_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/list_header.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/para_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/para_text.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/paragraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/paragraph.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/shape_component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/shape_component.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/shape_component_picture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/shape_component_picture.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/bodytext/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/bodytext/table.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/docinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/docinfo.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/fileheader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/fileheader.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/document/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/document/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/renderer.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/markdown/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/markdown/utils.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/src/viewer/pdf/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/src/viewer/pdf/mod.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/cfb_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/cfb_tests.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/common.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/decompress_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/decompress_tests.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/fileheader_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/fileheader_tests.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/parser_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/parser_tests.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshot_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshot_tests.rs -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/aligns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/aligns.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/aligns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/aligns.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/aligns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/aligns.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/charshape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/charshape.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/charshape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/charshape.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/charshape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/charshape.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/charstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/charstyle.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/charstyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/charstyle.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/charstyle.md: -------------------------------------------------------------------------------- 1 | # HWP 문서 2 | 3 | 4 | 5 | **버전**: 5.00.01.07 6 | 7 | -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/example.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/example.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/example.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/facename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/facename.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/facename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/facename.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/facename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/facename.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/facename2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/facename2.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/facename2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/facename2.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/facename2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/facename2.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/footnote-endnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/footnote-endnote.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/footnote-endnote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/footnote-endnote.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/footnote-endnote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/footnote-endnote.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/headerfooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/headerfooter.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/headerfooter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/headerfooter.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/headerfooter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/headerfooter.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/hwpSummaryInformation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/hwpSummaryInformation.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/hwpSummaryInformation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/hwpSummaryInformation.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/hwpSummaryInformation.md: -------------------------------------------------------------------------------- 1 | # HWP 문서 2 | 3 | 4 | 5 | **버전**: 5.01.00.01 6 | 7 | -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/BIN0001.jpg -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/BIN0002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/BIN0002.bmp -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/BIN0003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/BIN0003.bmp -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/BIN0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/BIN0004.jpg -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/noori/BIN0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/noori/BIN0001.jpg -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/noori/BIN0002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/noori/BIN0002.bmp -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/noori/BIN0003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/noori/BIN0003.bmp -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/images/noori/BIN0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/images/noori/BIN0004.jpg -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/issue144-fields-crossing-lineseg-boundary.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/issue30.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/issue30.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/issue30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/issue30.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/issue30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/issue30.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/linespacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/linespacing.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/linespacing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/linespacing.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/linespacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/linespacing.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/lists-bullet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/lists-bullet.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/lists-bullet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/lists-bullet.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/lists-bullet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/lists-bullet.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/lists.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/lists.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/lists.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/matrix.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/matrix.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/matrix.md: -------------------------------------------------------------------------------- 1 | # HWP 문서 2 | 3 | 4 | 5 | **버전**: 5.00.01.07 6 | 7 | -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-in-common-controls.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-layout.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-layout.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-layout.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-widths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-widths.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-widths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-widths.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns-widths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns-widths.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/multicolumns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/multicolumns.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/noori.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/noori.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/noori.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/noori.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/noori.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/noori.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/outline.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/outline.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/outline.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/page.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/page.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/page.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/pagedefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/pagedefs.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/pagedefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/pagedefs.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/pagedefs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/pagedefs.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/parashape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/parashape.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/parashape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/parashape.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/parashape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/parashape.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/sample-5017-pics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/sample-5017-pics.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/sample-5017-pics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/sample-5017-pics.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/sample-5017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/sample-5017.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/sample-5017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/sample-5017.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/selfintroduce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/selfintroduce.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/selfintroduce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/selfintroduce.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/selfintroduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/selfintroduce.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapecontainer-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shapecontainer-2.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapecontainer-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shapecontainer-2.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shapeline.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shapeline.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapeline.md: -------------------------------------------------------------------------------- 1 | # HWP 문서 2 | 3 | 4 | 5 | **버전**: 5.00.01.07 6 | 7 | -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapepict-scaled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shapepict-scaled.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shapepict-scaled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shapepict-scaled.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shaperect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shaperect.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shaperect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shaperect.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/shaperect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/shaperect.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__aligns_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__aligns_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__aligns_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__aligns_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__aligns_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__aligns_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__charshape_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__charshape_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__charshape_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__charshape_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__charshape_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__charshape_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__charstyle_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__example_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__example_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__example_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__example_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__example_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__example_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__facename2_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__facename2_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__facename2_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__facename2_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__facename2_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__facename2_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__facename_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__facename_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__facename_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__facename_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__facename_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__facename_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__footnote_endnote_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__headerfooter_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__hwpSummaryInformation_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__issue144_fields_crossing_lineseg_boundary_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__issue30_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__issue30_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__issue30_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__issue30_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__issue30_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__issue30_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__linespacing_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__lists_bullet_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__lists_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__lists_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__lists_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__lists_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__lists_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__lists_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__matrix_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__matrix_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__matrix_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__matrix_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__matrix_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__matrix_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_in_common_controls_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_layout_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__multicolumns_widths_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__noori_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__noori_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__noori_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__noori_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__noori_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__noori_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__outline_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__outline_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__outline_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__outline_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__outline_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__outline_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__page_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__page_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__page_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__page_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__page_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__page_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__pagedefs_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__parashape_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__parashape_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__parashape_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__parashape_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__parashape_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__parashape_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__selfintroduce_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__shapeline_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__shaperect_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__strikethrough_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__tabdef_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_caption_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_position_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_position_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_position_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_position_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__table_position_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__table_position_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__textbox_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__textbox_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__textbox_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__textbox_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__textbox_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__textbox_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__underline_styles_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_html.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_html.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_json.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_markdown.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/snapshot_tests__viewtext_markdown.snap -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/strikethrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/strikethrough.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/strikethrough.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/strikethrough.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/strikethrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/strikethrough.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/tabdef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/tabdef.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/tabdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/tabdef.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/tabdef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/tabdef.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table-caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table-caption.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table-caption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table-caption.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table-caption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table-caption.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table-position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table-position.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table-position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table-position.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table-position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table-position.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/table.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/textbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/textbox.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/textbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/textbox.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/textbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/textbox.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/underline-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/underline-styles.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/underline-styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/underline-styles.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/underline-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/underline-styles.md -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/viewtext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/viewtext.html -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/viewtext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/viewtext.json -------------------------------------------------------------------------------- /crates/hwp-core/tests/snapshots/viewtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/crates/hwp-core/tests/snapshots/viewtext.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/components/HwpDemo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/components/HwpDemo.css -------------------------------------------------------------------------------- /docs/components/HwpDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/components/HwpDemo.tsx -------------------------------------------------------------------------------- /docs/components/HwpDemoWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/components/HwpDemoWrapper.tsx -------------------------------------------------------------------------------- /docs/components/PlatformTabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/components/PlatformTabs.css -------------------------------------------------------------------------------- /docs/components/PlatformTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/components/PlatformTabs.tsx -------------------------------------------------------------------------------- /docs/docs/_nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/_nav.json -------------------------------------------------------------------------------- /docs/docs/api/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/api/_meta.json -------------------------------------------------------------------------------- /docs/docs/api/fileHeader.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/api/fileHeader.mdx -------------------------------------------------------------------------------- /docs/docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/api/index.md -------------------------------------------------------------------------------- /docs/docs/api/parseHwp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/api/parseHwp.md -------------------------------------------------------------------------------- /docs/docs/api/toJson.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/api/toJson.mdx -------------------------------------------------------------------------------- /docs/docs/api/toMarkdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/api/toMarkdown.mdx -------------------------------------------------------------------------------- /docs/docs/backlog/00_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/backlog/00_overview.md -------------------------------------------------------------------------------- /docs/docs/backlog/10_current_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/backlog/10_current_tasks.md -------------------------------------------------------------------------------- /docs/docs/backlog/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/backlog/_meta.json -------------------------------------------------------------------------------- /docs/docs/backlog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/backlog/index.md -------------------------------------------------------------------------------- /docs/docs/guide/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/_meta.json -------------------------------------------------------------------------------- /docs/docs/guide/cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/cli.mdx -------------------------------------------------------------------------------- /docs/docs/guide/demo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/demo.mdx -------------------------------------------------------------------------------- /docs/docs/guide/development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/development.mdx -------------------------------------------------------------------------------- /docs/docs/guide/examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/examples.mdx -------------------------------------------------------------------------------- /docs/docs/guide/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/getting-started.mdx -------------------------------------------------------------------------------- /docs/docs/guide/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/index.mdx -------------------------------------------------------------------------------- /docs/docs/guide/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/guide/installation.mdx -------------------------------------------------------------------------------- /docs/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/index.mdx -------------------------------------------------------------------------------- /docs/docs/public/demo/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/public/demo/noori.hwp -------------------------------------------------------------------------------- /docs/docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/public/logo.png -------------------------------------------------------------------------------- /docs/docs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/public/logo.svg -------------------------------------------------------------------------------- /docs/docs/roadmap/_meta.json: -------------------------------------------------------------------------------- 1 | [ 2 | "index" 3 | ] 4 | -------------------------------------------------------------------------------- /docs/docs/roadmap/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/roadmap/index.md -------------------------------------------------------------------------------- /docs/docs/spec/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/_meta.json -------------------------------------------------------------------------------- /docs/docs/spec/chart.md: -------------------------------------------------------------------------------- 1 | # 차트 형식 2 | 3 | (내용 준비 중) 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/docs/spec/distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/distribution.md -------------------------------------------------------------------------------- /docs/docs/spec/formula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/formula.md -------------------------------------------------------------------------------- /docs/docs/spec/hwp-3.0-hwpml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/hwp-3.0-hwpml.md -------------------------------------------------------------------------------- /docs/docs/spec/hwp-5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/hwp-5.0.md -------------------------------------------------------------------------------- /docs/docs/spec/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/index.md -------------------------------------------------------------------------------- /docs/docs/spec/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/docs/spec/types.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/rspress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/rspress.config.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /examples/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/cli/README.md -------------------------------------------------------------------------------- /examples/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/cli/package.json -------------------------------------------------------------------------------- /examples/fixtures/aligns.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/aligns.hwp -------------------------------------------------------------------------------- /examples/fixtures/borderfill.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/borderfill.hwp -------------------------------------------------------------------------------- /examples/fixtures/charshape.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/charshape.hwp -------------------------------------------------------------------------------- /examples/fixtures/charstyle.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/charstyle.hwp -------------------------------------------------------------------------------- /examples/fixtures/example.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/example.hwp -------------------------------------------------------------------------------- /examples/fixtures/facename.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/facename.hwp -------------------------------------------------------------------------------- /examples/fixtures/facename2.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/facename2.hwp -------------------------------------------------------------------------------- /examples/fixtures/footnote-endnote.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/footnote-endnote.hwp -------------------------------------------------------------------------------- /examples/fixtures/headerfooter.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/headerfooter.hwp -------------------------------------------------------------------------------- /examples/fixtures/hwpSummaryInformation.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/hwpSummaryInformation.hwp -------------------------------------------------------------------------------- /examples/fixtures/issue144-fields-crossing-lineseg-boundary.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/issue144-fields-crossing-lineseg-boundary.hwp -------------------------------------------------------------------------------- /examples/fixtures/issue30.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/issue30.hwp -------------------------------------------------------------------------------- /examples/fixtures/linespacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/linespacing.html -------------------------------------------------------------------------------- /examples/fixtures/linespacing.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/linespacing.hwp -------------------------------------------------------------------------------- /examples/fixtures/linespacing_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/linespacing_style.css -------------------------------------------------------------------------------- /examples/fixtures/lists-bullet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/lists-bullet.html -------------------------------------------------------------------------------- /examples/fixtures/lists-bullet.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/lists-bullet.hwp -------------------------------------------------------------------------------- /examples/fixtures/lists-bullet_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/lists-bullet_style.css -------------------------------------------------------------------------------- /examples/fixtures/lists.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/lists.hwp -------------------------------------------------------------------------------- /examples/fixtures/matrix.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/matrix.hwp -------------------------------------------------------------------------------- /examples/fixtures/multicolumns-in-common-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/multicolumns-in-common-controls.html -------------------------------------------------------------------------------- /examples/fixtures/multicolumns-in-common-controls.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/multicolumns-in-common-controls.hwp -------------------------------------------------------------------------------- /examples/fixtures/multicolumns-in-common-controls_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/multicolumns-in-common-controls_style.css -------------------------------------------------------------------------------- /examples/fixtures/multicolumns-layout.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/multicolumns-layout.hwp -------------------------------------------------------------------------------- /examples/fixtures/multicolumns-widths.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/multicolumns-widths.hwp -------------------------------------------------------------------------------- /examples/fixtures/multicolumns.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/multicolumns.hwp -------------------------------------------------------------------------------- /examples/fixtures/noori-1page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori-1page.jpg -------------------------------------------------------------------------------- /examples/fixtures/noori-2page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori-2page.jpg -------------------------------------------------------------------------------- /examples/fixtures/noori-3page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori-3page.jpg -------------------------------------------------------------------------------- /examples/fixtures/noori.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori.html -------------------------------------------------------------------------------- /examples/fixtures/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori.hwp -------------------------------------------------------------------------------- /examples/fixtures/noori_hd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori_hd1.png -------------------------------------------------------------------------------- /examples/fixtures/noori_hd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori_hd2.png -------------------------------------------------------------------------------- /examples/fixtures/noori_hd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori_hd3.png -------------------------------------------------------------------------------- /examples/fixtures/noori_hd4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori_hd4.png -------------------------------------------------------------------------------- /examples/fixtures/noori_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/noori_style.css -------------------------------------------------------------------------------- /examples/fixtures/outline.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/outline.hwp -------------------------------------------------------------------------------- /examples/fixtures/page.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/page.hwp -------------------------------------------------------------------------------- /examples/fixtures/pagedefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/pagedefs.html -------------------------------------------------------------------------------- /examples/fixtures/pagedefs.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/pagedefs.hwp -------------------------------------------------------------------------------- /examples/fixtures/pagedefs_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/pagedefs_style.css -------------------------------------------------------------------------------- /examples/fixtures/parashape.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/parashape.hwp -------------------------------------------------------------------------------- /examples/fixtures/password-12345.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/password-12345.hwp -------------------------------------------------------------------------------- /examples/fixtures/sample-5017-pics.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/sample-5017-pics.hwp -------------------------------------------------------------------------------- /examples/fixtures/sample-5017.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/sample-5017.hwp -------------------------------------------------------------------------------- /examples/fixtures/selfintroduce.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/selfintroduce.hwp -------------------------------------------------------------------------------- /examples/fixtures/shapecontainer-2.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/shapecontainer-2.hwp -------------------------------------------------------------------------------- /examples/fixtures/shapeline.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/shapeline.hwp -------------------------------------------------------------------------------- /examples/fixtures/shapepict-scaled.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/shapepict-scaled.hwp -------------------------------------------------------------------------------- /examples/fixtures/shaperect.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/shaperect.hwp -------------------------------------------------------------------------------- /examples/fixtures/strikethrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/strikethrough.html -------------------------------------------------------------------------------- /examples/fixtures/strikethrough.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/strikethrough.hwp -------------------------------------------------------------------------------- /examples/fixtures/strikethrough_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/strikethrough_style.css -------------------------------------------------------------------------------- /examples/fixtures/tabdef.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/tabdef.hwp -------------------------------------------------------------------------------- /examples/fixtures/table-caption.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table-caption.hwp -------------------------------------------------------------------------------- /examples/fixtures/table-position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table-position.html -------------------------------------------------------------------------------- /examples/fixtures/table-position.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table-position.hwp -------------------------------------------------------------------------------- /examples/fixtures/table-position_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table-position_style.css -------------------------------------------------------------------------------- /examples/fixtures/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table.html -------------------------------------------------------------------------------- /examples/fixtures/table.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table.hwp -------------------------------------------------------------------------------- /examples/fixtures/table_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/table_style.css -------------------------------------------------------------------------------- /examples/fixtures/textbox.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/textbox.hwp -------------------------------------------------------------------------------- /examples/fixtures/underline-styles.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/underline-styles.hwp -------------------------------------------------------------------------------- /examples/fixtures/viewtext.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/fixtures/viewtext.hwp -------------------------------------------------------------------------------- /examples/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/node/README.md -------------------------------------------------------------------------------- /examples/node/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/node/noori.hwp -------------------------------------------------------------------------------- /examples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/node/package.json -------------------------------------------------------------------------------- /examples/node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/node/src/index.ts -------------------------------------------------------------------------------- /examples/node/src/test-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/node/src/test-markdown.ts -------------------------------------------------------------------------------- /examples/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/node/tsconfig.json -------------------------------------------------------------------------------- /examples/react-native/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/.bundle/config -------------------------------------------------------------------------------- /examples/react-native/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/react-native/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/Gemfile -------------------------------------------------------------------------------- /examples/react-native/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/Gemfile.lock -------------------------------------------------------------------------------- /examples/react-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/README.md -------------------------------------------------------------------------------- /examples/react-native/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/build.gradle -------------------------------------------------------------------------------- /examples/react-native/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/react-native/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/java/com/reactnativeexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/java/com/reactnativeexample/MainActivity.kt -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/java/com/reactnativeexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/java/com/reactnativeexample/MainApplication.kt -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/raw/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/raw/noori.hwp -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/react-native/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/react-native/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/build.gradle -------------------------------------------------------------------------------- /examples/react-native/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/gradle.properties -------------------------------------------------------------------------------- /examples/react-native/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/react-native/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/react-native/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/gradlew -------------------------------------------------------------------------------- /examples/react-native/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/gradlew.bat -------------------------------------------------------------------------------- /examples/react-native/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/android/settings.gradle -------------------------------------------------------------------------------- /examples/react-native/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/app.json -------------------------------------------------------------------------------- /examples/react-native/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/babel.config.js -------------------------------------------------------------------------------- /examples/react-native/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/global.d.ts -------------------------------------------------------------------------------- /examples/react-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/index.js -------------------------------------------------------------------------------- /examples/react-native/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/.xcode.env -------------------------------------------------------------------------------- /examples/react-native/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/Podfile -------------------------------------------------------------------------------- /examples/react-native/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample.xcodeproj/xcshareddata/xcschemes/ReactNativeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample.xcodeproj/xcshareddata/xcschemes/ReactNativeExample.xcscheme -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample/AppDelegate.swift -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample/Info.plist -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/react-native/ios/ReactNativeExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/ReactNativeExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/react-native/ios/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/ios/noori.hwp -------------------------------------------------------------------------------- /examples/react-native/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/react-native/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/metro.config.js -------------------------------------------------------------------------------- /examples/react-native/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/noori.hwp -------------------------------------------------------------------------------- /examples/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/package.json -------------------------------------------------------------------------------- /examples/react-native/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/react-native.config.js -------------------------------------------------------------------------------- /examples/react-native/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/src/App.tsx -------------------------------------------------------------------------------- /examples/react-native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/react-native/tsconfig.json -------------------------------------------------------------------------------- /examples/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/README.md -------------------------------------------------------------------------------- /examples/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/index.html -------------------------------------------------------------------------------- /examples/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/package.json -------------------------------------------------------------------------------- /examples/web/public/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/public/noori.hwp -------------------------------------------------------------------------------- /examples/web/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/public/vite.svg -------------------------------------------------------------------------------- /examples/web/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/App.css -------------------------------------------------------------------------------- /examples/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/App.tsx -------------------------------------------------------------------------------- /examples/web/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/assets/react.svg -------------------------------------------------------------------------------- /examples/web/src/buffer-polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/buffer-polyfill.ts -------------------------------------------------------------------------------- /examples/web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/index.css -------------------------------------------------------------------------------- /examples/web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/main.tsx -------------------------------------------------------------------------------- /examples/web/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/src/vite-env.d.ts -------------------------------------------------------------------------------- /examples/web/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/tsconfig.app.json -------------------------------------------------------------------------------- /examples/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/tsconfig.json -------------------------------------------------------------------------------- /examples/web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/tsconfig.node.json -------------------------------------------------------------------------------- /examples/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/examples/web/vite.config.ts -------------------------------------------------------------------------------- /legacy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/LICENSE -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/cfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/cfb.js -------------------------------------------------------------------------------- /legacy/hwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/hwp.png -------------------------------------------------------------------------------- /legacy/hwpjs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/hwpjs.css -------------------------------------------------------------------------------- /legacy/hwpjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/hwpjs.js -------------------------------------------------------------------------------- /legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/index.html -------------------------------------------------------------------------------- /legacy/noori.hwp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/noori.hwp -------------------------------------------------------------------------------- /legacy/pako.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/pako.js -------------------------------------------------------------------------------- /legacy/work/working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/legacy/work/working.md -------------------------------------------------------------------------------- /oxlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/oxlint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/package.json -------------------------------------------------------------------------------- /packages/hwpjs/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.cargo/config.toml -------------------------------------------------------------------------------- /packages/hwpjs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.editorconfig -------------------------------------------------------------------------------- /packages/hwpjs/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.gitattributes -------------------------------------------------------------------------------- /packages/hwpjs/.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.github/renovate.json -------------------------------------------------------------------------------- /packages/hwpjs/.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.github/workflows/CI.yml -------------------------------------------------------------------------------- /packages/hwpjs/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.prettierignore -------------------------------------------------------------------------------- /packages/hwpjs/.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/.taplo.toml -------------------------------------------------------------------------------- /packages/hwpjs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/hwpjs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/Cargo.lock -------------------------------------------------------------------------------- /packages/hwpjs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/Cargo.toml -------------------------------------------------------------------------------- /packages/hwpjs/Hwpjs.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/Hwpjs.podspec -------------------------------------------------------------------------------- /packages/hwpjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/LICENSE -------------------------------------------------------------------------------- /packages/hwpjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/README.md -------------------------------------------------------------------------------- /packages/hwpjs/__test__/parseHwpToMarkdown.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/__test__/parseHwpToMarkdown.spec.ts -------------------------------------------------------------------------------- /packages/hwpjs/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/CMakeLists.txt -------------------------------------------------------------------------------- /packages/hwpjs/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/build.gradle -------------------------------------------------------------------------------- /packages/hwpjs/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/gradle.properties -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/java/rs/craby/hwpjs/HwpjsPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/java/rs/craby/hwpjs/HwpjsPackage.kt -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/jni/include/CrabySignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/jni/include/CrabySignals.h -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/jni/include/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/jni/include/cxx.h -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/jni/include/ffi.rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/jni/include/ffi.rs.h -------------------------------------------------------------------------------- /packages/hwpjs/android/src/main/jni/src/ffi.rs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/src/main/jni/src/ffi.rs.cc -------------------------------------------------------------------------------- /packages/hwpjs/android/stubs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/stubs/CMakeLists.txt -------------------------------------------------------------------------------- /packages/hwpjs/android/stubs/Hwpjs_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/stubs/Hwpjs_stub.cpp -------------------------------------------------------------------------------- /packages/hwpjs/android/stubs/Hwpjs_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/android/stubs/Hwpjs_stub.h -------------------------------------------------------------------------------- /packages/hwpjs/benchmark/bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/benchmark/bench.ts -------------------------------------------------------------------------------- /packages/hwpjs/benchmark/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /packages/hwpjs/benchmark/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/benchmark/tsconfig.json -------------------------------------------------------------------------------- /packages/hwpjs/bin/hwpjs.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../dist/cli/index.js'); 4 | -------------------------------------------------------------------------------- /packages/hwpjs/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | napi_build::setup(); 3 | } 4 | -------------------------------------------------------------------------------- /packages/hwpjs/cpp/CrabyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/cpp/CrabyUtils.hpp -------------------------------------------------------------------------------- /packages/hwpjs/cpp/CxxHwpjsModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/cpp/CxxHwpjsModule.cpp -------------------------------------------------------------------------------- /packages/hwpjs/cpp/CxxHwpjsModule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/cpp/CxxHwpjsModule.hpp -------------------------------------------------------------------------------- /packages/hwpjs/cpp/bridging-generated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/cpp/bridging-generated.hpp -------------------------------------------------------------------------------- /packages/hwpjs/craby.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/craby.toml -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/crates/lib/Cargo.toml -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | craby_build::setup(); 3 | } 4 | -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/include/CrabySignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/crates/lib/include/CrabySignals.h -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/crates/lib/src/ffi.rs -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/src/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/crates/lib/src/generated.rs -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/src/hwpjs_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/crates/lib/src/hwpjs_impl.rs -------------------------------------------------------------------------------- /packages/hwpjs/crates/lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/crates/lib/src/lib.rs -------------------------------------------------------------------------------- /packages/hwpjs/dist/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/browser.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/cli/commands/batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/cli/commands/batch.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/cli/commands/extract-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/cli/commands/extract-images.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/cli/commands/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/cli/commands/info.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/cli/commands/to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/cli/commands/to-json.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/cli/commands/to-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/cli/commands/to-markdown.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/cli/index.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/hwpjs-napi.wasi-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/hwpjs-napi.wasi-browser.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/hwpjs-napi.wasi.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/hwpjs-napi.wasi.cjs -------------------------------------------------------------------------------- /packages/hwpjs/dist/hwpjs.wasi-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/hwpjs.wasi-browser.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/hwpjs.wasi.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/hwpjs.wasi.cjs -------------------------------------------------------------------------------- /packages/hwpjs/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/index.d.ts -------------------------------------------------------------------------------- /packages/hwpjs/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/index.js -------------------------------------------------------------------------------- /packages/hwpjs/dist/react-native/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/react-native/index.cjs -------------------------------------------------------------------------------- /packages/hwpjs/dist/react-native/index.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/react-native/index.cjs.map -------------------------------------------------------------------------------- /packages/hwpjs/dist/react-native/index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/react-native/index.d.cts -------------------------------------------------------------------------------- /packages/hwpjs/dist/react-native/index.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/react-native/index.d.mts -------------------------------------------------------------------------------- /packages/hwpjs/dist/react-native/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/react-native/index.mjs -------------------------------------------------------------------------------- /packages/hwpjs/dist/react-native/index.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/react-native/index.mjs.map -------------------------------------------------------------------------------- /packages/hwpjs/dist/wasi-worker-browser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/wasi-worker-browser.mjs -------------------------------------------------------------------------------- /packages/hwpjs/dist/wasi-worker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/dist/wasi-worker.mjs -------------------------------------------------------------------------------- /packages/hwpjs/ios/HwpjsModuleProvider.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/ios/HwpjsModuleProvider.mm -------------------------------------------------------------------------------- /packages/hwpjs/ios/include/CrabySignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/ios/include/CrabySignals.h -------------------------------------------------------------------------------- /packages/hwpjs/ios/include/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/ios/include/cxx.h -------------------------------------------------------------------------------- /packages/hwpjs/ios/include/ffi.rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/ios/include/ffi.rs.h -------------------------------------------------------------------------------- /packages/hwpjs/ios/src/ffi.rs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/ios/src/ffi.rs.cc -------------------------------------------------------------------------------- /packages/hwpjs/npm/darwin-arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/darwin-arm64/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/darwin-arm64/hwpjs.darwin-arm64.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/darwin-arm64/hwpjs.darwin-arm64.node -------------------------------------------------------------------------------- /packages/hwpjs/npm/darwin-arm64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/darwin-arm64/package.json -------------------------------------------------------------------------------- /packages/hwpjs/npm/darwin-x64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/darwin-x64/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/darwin-x64/hwpjs.darwin-x64.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/darwin-x64/hwpjs.darwin-x64.node -------------------------------------------------------------------------------- /packages/hwpjs/npm/darwin-x64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/darwin-x64/package.json -------------------------------------------------------------------------------- /packages/hwpjs/npm/linux-x64-gnu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/linux-x64-gnu/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/linux-x64-gnu/hwpjs.linux-x64-gnu.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/linux-x64-gnu/hwpjs.linux-x64-gnu.node -------------------------------------------------------------------------------- /packages/hwpjs/npm/linux-x64-gnu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/linux-x64-gnu/package.json -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/hwpjs.wasi-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/hwpjs.wasi-browser.js -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/hwpjs.wasi.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/hwpjs.wasi.cjs -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/hwpjs.wasm32-wasi.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/hwpjs.wasm32-wasi.wasm -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/package.json -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/wasi-worker-browser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/wasi-worker-browser.mjs -------------------------------------------------------------------------------- /packages/hwpjs/npm/wasm32-wasi/wasi-worker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/wasm32-wasi/wasi-worker.mjs -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-arm64-msvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-arm64-msvc/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-arm64-msvc/hwpjs.win32-arm64-msvc.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-arm64-msvc/hwpjs.win32-arm64-msvc.node -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-arm64-msvc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-arm64-msvc/package.json -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-ia32-msvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-ia32-msvc/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-ia32-msvc/hwpjs.win32-ia32-msvc.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-ia32-msvc/hwpjs.win32-ia32-msvc.node -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-ia32-msvc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-ia32-msvc/package.json -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-x64-msvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-x64-msvc/README.md -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-x64-msvc/hwpjs.win32-x64-msvc.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-x64-msvc/hwpjs.win32-x64-msvc.node -------------------------------------------------------------------------------- /packages/hwpjs/npm/win32-x64-msvc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/npm/win32-x64-msvc/package.json -------------------------------------------------------------------------------- /packages/hwpjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/package.json -------------------------------------------------------------------------------- /packages/hwpjs/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/react-native.config.js -------------------------------------------------------------------------------- /packages/hwpjs/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.90.0" 3 | -------------------------------------------------------------------------------- /packages/hwpjs/scripts/check-package-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/scripts/check-package-size.sh -------------------------------------------------------------------------------- /packages/hwpjs/scripts/cleanup-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/scripts/cleanup-root.ts -------------------------------------------------------------------------------- /packages/hwpjs/scripts/create-target-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/scripts/create-target-link.ts -------------------------------------------------------------------------------- /packages/hwpjs/scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/scripts/publish.sh -------------------------------------------------------------------------------- /packages/hwpjs/scripts/releash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/scripts/releash.sh -------------------------------------------------------------------------------- /packages/hwpjs/scripts/rename-wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/scripts/rename-wasm.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-cli/commands/batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-cli/commands/batch.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-cli/commands/extract-images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-cli/commands/extract-images.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-cli/commands/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-cli/commands/info.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-cli/commands/to-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-cli/commands/to-json.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-cli/commands/to-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-cli/commands/to-markdown.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-cli/index.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-reactnative/NativeReactNative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-reactnative/NativeReactNative.ts -------------------------------------------------------------------------------- /packages/hwpjs/src-reactnative/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src-reactnative/index.ts -------------------------------------------------------------------------------- /packages/hwpjs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/src/lib.rs -------------------------------------------------------------------------------- /packages/hwpjs/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/test-markdown.js -------------------------------------------------------------------------------- /packages/hwpjs/tsconfig.cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/tsconfig.cli.json -------------------------------------------------------------------------------- /packages/hwpjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/tsconfig.json -------------------------------------------------------------------------------- /packages/hwpjs/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/tsdown.config.ts -------------------------------------------------------------------------------- /packages/hwpjs/wasi-worker-browser.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/packages/hwpjs/wasi-worker-browser.mjs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/test-ios-e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohah/hwpjs/HEAD/scripts/test-ios-e2e.js --------------------------------------------------------------------------------