Compare commits

...

4 Commits

Author SHA1 Message Date
701d756f35 dealing with empty space in strong.span element 2023-02-16 16:44:33 +00:00
37582ed59f adding new repos to zuul jobs
Reviewed-by: tischrei <tino.schreiber@t-systems.com>
Co-authored-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-committed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
2023-02-15 09:45:05 +00:00
b421d4c681 adding new document types
Reviewed-by: vladimirhasko <vladimirhasko@gmail.com>
Co-authored-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-committed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
2023-02-14 00:52:55 +00:00
1b372eb4c2 addressing dollar char in the links
Reviewed-by: vladimirhasko <vladimirhasko@gmail.com>
Co-authored-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-committed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
2023-02-14 00:18:15 +00:00
3 changed files with 39 additions and 0 deletions

View File

@ -370,6 +370,12 @@ categories:
type: tool-guide
pdf_name: obs-tool-guide
hc_location: browsertg/obs
- html_location: docs/obs/pfs
rst_location: doc/pfs/source
title: Parallel File System (PFS)
type: pfs
pdf_name: obs-pfs
hc_location: pfs/obs
- html_location: docs/obs/api-swift
rst_location: doc/swiftapi/source
title: API Reference (Swift)
@ -686,6 +692,12 @@ categories:
type: umn
pdf_name: ma-umn
hc_location: usermanual/ma
- html_location: docs/modelarts/sdk-ref
rst_location: doc/sdk-ref/source
title: ModelArts Software Development Kit (ModelArts SDK)
type: sdk-ref
pdf_name: ma-sdk-ref
hc_location: sdk/ma
teams:
- name: docs-bigdata-ai-rw
permission: write
@ -913,6 +925,25 @@ categories:
- name: docs-database-rw
permission: write
repository: docs/distributed-cache-service
- service_title: Distributed Database Middleware
service_type: ddm
docs:
- html_location: docs/ddm/api-ref
rst_location: api-ref/source
title: API Reference
type: api-ref
pdf_name: ddm-api-ref
hc_location: api/ddm
- html_location: docs/ddm/umn
rst_location: umn/source
title: User Guide
type: umn
pdf_name: ddm-umn
hc_location: usermanual/ddm
teams:
- name: docs-database-rw
permission: write
repository: docs/distributed-database-middleware
- service_title: Document Database Service
service_type: dds
docs:

View File

@ -38,6 +38,7 @@ class OTCDocConvertor:
new_name = new_name.replace("!", "")
new_name = new_name.replace("<", "")
new_name = new_name.replace(">", "")
new_name = new_name.replace("$", "")
new_name = new_name.replace("#", "sharp")
new_name = new_name.replace("%", "pct")
new_name = new_name.replace('_&_', '_and_')
@ -353,6 +354,11 @@ class OTCDocConvertor:
curr = el.string
el.string.replace_with(curr[:-1])
el.insert_after(" ")
elif (
el.string
and el.span and el.span.string == " "
):
el.span.decompose()
# A very dirty hack - if we have "*" inside of em (italic) regular
# escaping is not working anymore (pandoc is not producing proper

View File

@ -77,6 +77,7 @@
files:
- otc_doc_convertor/convertor.py
- docs/cce
- docs/cci
- docs/swr
- roles
- templates
@ -94,6 +95,7 @@
- otc_doc_convertor/convertor.py
- docs/das
- docs/dcs
- docs/ddm
- docs/dds
- docs/gaussdb_mysql
- docs/gaussdb_nosql