├── _posts ├── .gitkeep ├── 2015-09-25-general-usage.md ├── 2018-05-12-audit.md ├── 2015-09-25-winapp2ini.md ├── 2018-03-14-troubleshooting.md ├── 2019-08-14-chaff.md ├── 2015-09-30-install-on-windows.md ├── 2019-04-19-contributing.md ├── 2019-04-19-variables.md ├── 2015-09-25-preferences.md ├── 2015-09-25-running-from-source-code.md ├── 2015-09-25-command-line-interface.md ├── 2015-09-30-install-on-linux.md ├── 2015-09-25-cleanerml.md ├── 2021-04-17-testing.md ├── 2015-09-25-frequently-asked-questions.md └── 2015-09-25-shred-files-and-wipe-disks.md ├── CNAME ├── _includes ├── footer.html ├── ad.html ├── header.html ├── google_analytics.html ├── navigation.html └── disqus.html ├── .gitignore ├── images ├── debug-windows10.png ├── run-dialog-windows10.png └── windows-10-verified-publisher-certum.png ├── Gemfile ├── _layouts ├── page.html └── default.html ├── README.md ├── index.md ├── css ├── main.css └── syntax.css ├── _config.yml ├── bin └── jekyll-page └── COPYING /_posts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.bleachbit.org 2 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | _site 3 | _pages 4 | *~ 5 | -------------------------------------------------------------------------------- /images/debug-windows10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleachbit/docs/HEAD/images/debug-windows10.png -------------------------------------------------------------------------------- /images/run-dialog-windows10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleachbit/docs/HEAD/images/run-dialog-windows10.png -------------------------------------------------------------------------------- /images/windows-10-verified-publisher-certum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleachbit/docs/HEAD/images/windows-10-verified-publisher-certum.png -------------------------------------------------------------------------------- /_includes/ad.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | #https://talk.jekyllrb.com/t/liquid-4-0-3-tainted/7946/12 4 | 5 | gem 'liquid', '>= 4.0', '< 6.0' 6 | gem 'jekyll', '>= 4.3.2' 7 | gem 'jekyll-redirect-from' 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |