From 1f0682a896d1bcc446ba764d61d35583b3d5bed7 Mon Sep 17 00:00:00 2001 From: Makoto Emura Date: Thu, 21 May 2026 18:00:53 -0700 Subject: [PATCH 1/5] Add lastmod property to sitemaps --- conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conf.py b/conf.py index e42502838..c012f56d1 100644 --- a/conf.py +++ b/conf.py @@ -30,6 +30,7 @@ html_show_sphinx = False html_baseurl = 'https://help.emeditor.com/' sitemap_url_scheme = '{lang}{link}' +sitemap_show_lastmod = True smartquotes = False latex_engine = 'lualatex' latex_elements = { From 797183e0a6cee216dff11503cae6a9291943889c Mon Sep 17 00:00:00 2001 From: Makoto Emura Date: Thu, 21 May 2026 18:13:27 -0700 Subject: [PATCH 2/5] checkout --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9668b3c2e..1d1d07c86 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,6 +17,9 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v6 + with: + fetch-depth: 0 + fetch-tags: false - uses: actions/setup-python@v6 with: python-version: '3.14' From 93ea318855b56d590ff8aa39ca1eae210e83f72e Mon Sep 17 00:00:00 2001 From: Makoto Emura Date: Thu, 21 May 2026 18:28:27 -0700 Subject: [PATCH 3/5] sitemap_excludes --- conf.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/conf.py b/conf.py index c012f56d1..7bdeb2f8b 100644 --- a/conf.py +++ b/conf.py @@ -18,7 +18,6 @@ templates_path = ['_templates'] html_copy_source = False html_favicon = '_static/favicon.png' -sitemap_locales = ['en', 'ja', 'ko', 'zh-cn', 'zh-tw'] highlight_language = 'none' suppress_warnings = [ 'image.not_readable', @@ -29,9 +28,13 @@ html_theme = 'piccolo_theme' html_show_sphinx = False html_baseurl = 'https://help.emeditor.com/' +smartquotes = False + +sitemap_locales = ['en', 'ja', 'ko', 'zh-cn', 'zh-tw'] sitemap_url_scheme = '{lang}{link}' sitemap_show_lastmod = True -smartquotes = False +sitemap_excludes = ['_static/logo-minified-margins.svg'] + latex_engine = 'lualatex' latex_elements = { 'fontpkg': r''' From 49ae0247b01df3bb4969242f4c1b80f8c2f29990 Mon Sep 17 00:00:00 2001 From: Makoto Emura Date: Thu, 21 May 2026 19:49:31 -0700 Subject: [PATCH 4/5] git_untracked_check_dependencies --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 7bdeb2f8b..cffe72954 100644 --- a/conf.py +++ b/conf.py @@ -33,7 +33,7 @@ sitemap_locales = ['en', 'ja', 'ko', 'zh-cn', 'zh-tw'] sitemap_url_scheme = '{lang}{link}' sitemap_show_lastmod = True -sitemap_excludes = ['_static/logo-minified-margins.svg'] +git_untracked_check_dependencies = False latex_engine = 'lualatex' latex_elements = { From 2ac2856882f8b2f27a5b33b049795f8b905365fe Mon Sep 17 00:00:00 2001 From: Makoto Emura Date: Thu, 21 May 2026 20:08:21 -0700 Subject: [PATCH 5/5] suppress_warnings --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index cffe72954..127ee0d28 100644 --- a/conf.py +++ b/conf.py @@ -22,6 +22,7 @@ suppress_warnings = [ 'image.not_readable', 'myst.header', + 'git.dependency_not_found' ] navigation_depth = 2 html_theme_path = ['_themes'] @@ -33,7 +34,6 @@ sitemap_locales = ['en', 'ja', 'ko', 'zh-cn', 'zh-tw'] sitemap_url_scheme = '{lang}{link}' sitemap_show_lastmod = True -git_untracked_check_dependencies = False latex_engine = 'lualatex' latex_elements = {