We use this repository to host a blog used to test our other tools history4feed and Obstracts.
Unless you're helping to develop these products, this repo is likely of no use.
Incase it is, the critical details...
- The blog is built and hosted on Github pages (
main
branch): https://github.com/muchdogesec/fakeblog123/ - You can see how it is built here: https://github.com/muchdogesec/fakeblog123/blob/main/.github/workflows/jekyll.yml
- If you need to add a new post, put it in
_posts
following the template of existing content: https://github.com/muchdogesec/fakeblog123/tree/main/_posts
To run locally;
git clone https://github.com/muchdogesec/fakeblog123
cd fakeblog123
gem install bundler jekyll
bundle exec jekyll serve
(If running locally replace https://muchdogesec.github.io/fakeblog123/feeds/
with http://127.0.0.1:4000/
)
You can access the blog here: https://muchdogesec.github.io/fakeblog123/
To test downstream software, the autogenerated ATOM feed is converted to various other formats for testing. Here are those feed URLs, and how they are created;
- Contains encoded html: https://muchdogesec.github.io/fakeblog123/feeds/rss-feed-encoded.xml
- Contains decoded html (without CDATA tags, but it XML escaped): https://muchdogesec.github.io/fakeblog123/feeds/rss-feed-decoded.xml
- Contains decoded html inside CDATA tags: https://muchdogesec.github.io/fakeblog123/feeds/rss-feed-cdata.xml
- Contains encoded html: https://muchdogesec.github.io/fakeblog123/feeds/rss-feed-encoded-partial.xml
- Contains decoded html (without CDATA tags, but it XML escaped): https://muchdogesec.github.io/fakeblog123/feeds/rss-feed-decoded-partial.xml
- Contains decoded html inside CDATA tags: https://muchdogesec.github.io/fakeblog123/feeds/rss-feed-cdata-partial.xml
- Contains encoded html: https://muchdogesec.github.io/fakeblog123/feeds/atom-feed-encoded.xml
- Contains decoded html (without CDATA tags, but it XML escaped): https://muchdogesec.github.io/fakeblog123/feeds/atom-feed-decoded.xml
- Contains decoded html inside CDATA tags: https://muchdogesec.github.io/fakeblog123/feeds/atom-feed-cdata.xml
- Contains encoded html: https://muchdogesec.github.io/fakeblog123/feeds/atom-feed-encoded-partial.xml
- Contains decoded html (without CDATA tags, but it XML escaped): https://muchdogesec.github.io/fakeblog123/feeds/atom-feed-decoded-partial.xml
- Contains decoded html inside CDATA tags: https://muchdogesec.github.io/fakeblog123/feeds/atom-feed-cdata-partial.xml