mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-11-01 02:23:36 +00:00
* add support for page numbers in docx when present * version and changelog * add comment on page numbers * add header and footer to doc elements list * update integrations docs * include_page_breaks kwarg for doc and docx * merge element metadata for pagebreaks * fix typo * fix changelog typo * change page number default to None * add initial_page_number kwarg * make page number tests in pdf more explicit * revert test file * update ingest tests * update test fixture outputs * updates to IRS forms fixtures * ingest-test-fixtures-update * Update ingest test fixtures (#759) Co-authored-by: MthwRobinson <MthwRobinson@users.noreply.github.com> --------- Co-authored-by: Unstructured-DevOps <111007769+Unstructured-DevOps@users.noreply.github.com> Co-authored-by: MthwRobinson <MthwRobinson@users.noreply.github.com>
38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
{#-
|
|
|
|
Hi there!
|
|
|
|
You might be interested in https://pradyunsg.me/furo/customisation/sidebar/
|
|
|
|
Although if you're reading this, chances are that you're either familiar
|
|
enough with Sphinx that you know what you're doing, or landed here from that
|
|
documentation page.
|
|
|
|
Hope your day's going well. :)
|
|
|
|
-#}
|
|
<a class="sidebar-brand{% if logo %} centered{% endif %}" href="{{ pathto(master_doc) }}">
|
|
{% block brand_content %}
|
|
{%- if logo_url %}
|
|
<div class="sidebar-logo-container">
|
|
<img class="sidebar-logo" src="{{ logo_url }}" alt="Logo" />
|
|
</div>
|
|
{%- endif %}
|
|
{%- if theme_light_logo and theme_dark_logo %}
|
|
<div class="sidebar-logo-container">
|
|
<img class="sidebar-logo only-light" src="{{ pathto('_static/' + theme_light_logo, 1) }}" alt="Light Logo" />
|
|
<img class="sidebar-logo only-dark" src="{{ pathto('_static/' + theme_dark_logo, 1) }}" alt="Dark Logo" />
|
|
</div>
|
|
{%- endif %}
|
|
{% if not theme_sidebar_hide_name %}
|
|
<span class="sidebar-brand-text">{{ docstitle if docstitle else project }}</span>
|
|
{%- endif %}
|
|
{% endblock brand_content %}
|
|
</a>
|
|
<div class="social social--sidebar" style="margin-top: 1em; display: flex; justify-content: right; gap: 8px">
|
|
<a
|
|
href="https://join.slack.com/t/unstructuredw-kbe4326/shared_invite/zt-1x7cgo0pg-PTptXWylzPQF9xZolzCnwQ"
|
|
class="button--primary" target="_blank">Join <span aria-label="slack" class="slack-icon"></span></span></a>
|
|
<div class="github-stars github-stars--sidebar"></div>
|
|
</div>
|