Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 62ff5b9

Browse files
committed
fix: add favicon image to asciidoc content
1 parent df9d774 commit 62ff5b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

asciidoc-processor.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ module.exports = function (registry) {
22
registry.docinfoProcessor(function () {
33
this.atLocation('head');
44
this.process(function () {
5-
return `<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">`;
5+
return `<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
6+
<link rel="icon" type="image/png" href="https://syndesis.io/images/favicon.png">`;
67
});
78
});
89
registry.postprocessor(function() {

0 commit comments

Comments
 (0)