Skip to content

Commit 11eb1dc

Browse files
authored
fix: new favicon url (#191)
fix favicon url Signed-off-by: Michele Dolfi <[email protected]>
1 parent 5739033 commit 11eb1dc

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

docling_core/types/doc/document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ class DoclingDocument(BaseModel):
15481548

15491549
_HTML_DEFAULT_HEAD: str = r"""<head>
15501550
<link rel="icon" type="image/png"
1551-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
1551+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
15521552
<meta charset="UTF-8">
15531553
<title>
15541554
Powered by Docling

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ maintainers = [
2222
"Panos Vagenas <[email protected]>",
2323
]
2424
readme = "README.md"
25-
homepage = "https://ds4sd.github.io/"
25+
homepage = "https://github.com/docling-project"
2626
repository = "https://github.com/docling-project/docling-core"
2727
keywords = ["docling", "discovery", "etl", "information retrieval", "analytics", "database", "database schema", "schema", "JSON"]
2828
classifiers=[

test/data/doc/2206.01062.yaml.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

test/data/doc/bad_doc.yaml.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

test/data/doc/constructed_doc.embedded.html.gt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

test/data/doc/constructed_doc.placeholder.html.gt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

test/data/doc/constructed_doc.referenced.html.gt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

test/data/doc/constructed_document.yaml.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

test/data/doc/dummy_doc.yaml.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<link rel="icon" type="image/png"
5-
href="https://ds4sd.github.io/docling/assets/logo.png"/>
5+
href="https://raw.githubusercontent.com/docling-project/docling/refs/heads/main/docs/assets/logo.svg"/>
66
<meta charset="UTF-8">
77
<title>
88
Powered by Docling

0 commit comments

Comments
 (0)