File tree Expand file tree Collapse file tree 12 files changed +15
-13
lines changed
Expand file tree Collapse file tree 12 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ plugins:
6363 rss_updated : feed_rss_updated.xml
6464 feed_title : " My custom feed title" # MkDocs site_name: will be used if this key is not present
6565 feed_ttl : 1440
66- image : https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
66+ image : https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
6767 json_feed_enabled : true
6868 length : 20
6969 match_path : " .*"
Original file line number Diff line number Diff line change @@ -489,15 +489,15 @@ Default: `None`.
489489` ` ` yaml
490490plugins:
491491 - rss:
492- image: https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
492+ image: https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
493493` ` `
494494
495495Output :
496496
497497` ` ` xml
498498<image>
499499 <url>
500- https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
500+ https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
501501 </url>
502502 <title>MkDocs RSS Plugin</title>
503503 <link>https://guts.github.io/mkdocs-rss-plugin/</link>
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ plugins:
116116 default_timezone : " Europe/Paris"
117117 default_time : " 22:00"
118118 enabled : !ENV [MKDOCS_ENABLE_PLUGIN_RSS, true]
119- image : https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
119+ image : https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
120120 json_feed_enabled : true
121121 match_path : " .*"
122122 pretty_print : true
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ plugins:
2424 default_time : " 09:30"
2525 enabled : true
2626 feed_ttl : 1440
27- image : https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
27+ image : https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
2828 json_feed_enabled : true
2929 length : 20
3030 match_path : " .*"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ plugins:
2424 default_time : " 09:30"
2525 enabled : true
2626 feed_ttl : 1440
27- image : https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
27+ image : https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
2828 length : 20
2929 pretty_print : false
3030 match_path : " .*"
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ site_url: https://guts.github.io/mkdocs-rss-plugin
55plugins :
66 - blog :
77 blog_dir : blog
8- - rss
8+ - rss :
9+ match_path : blog/posts/.*
10+ pretty_print : true
911 - social :
1012 enabled : true
1113 cards : true
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ plugins:
2222 default_time : " 22:00"
2323 abstract_chars_count : 160
2424 abstract_delimiter : <!-- more -->
25- image : https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
25+ image : https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
2626 match_path : " .*"
2727 pretty_print : false
2828 url_parameters :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ plugins:
2121 default_time : " 22:00"
2222 abstract_chars_count : 160
2323 abstract_delimiter : <!-- more -->
24- image : https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png
24+ image : https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true
2525 match_path : " .*"
2626 pretty_print : false
2727 url_parameters :
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class TestBuildRss(BaseTest):
5050 def setUpClass (cls ):
5151 """Executed when module is loaded before any test."""
5252 cls .config_files = sorted (Path ("tests/fixtures/" ).glob ("**/*.yml" ))
53- cls .feed_image = "https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png"
53+ cls .feed_image = "https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true "
5454
5555 def setUp (self ):
5656 """Executed before each test."""
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ class TestConfig(BaseTest):
4242 def setUpClass (cls ):
4343 """Executed when module is loaded before any test."""
4444 cls .config_files = sorted (Path ("tests/fixtures/" ).glob ("**/mkdocs_*.yml" ))
45- cls .feed_image = "https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg. png"
45+ cls .feed_image = "https://github.com/Guts/mkdocs-rss-plugin/blob/main/docs/assets/logo_rss_plugin_mkdocs. png?raw=true "
4646
4747 def setUp (self ):
4848 """Executed before each test."""
You can’t perform that action at this time.
0 commit comments