1
0
Felix Crux 1f0dc89123 Exclude README and CONTRIBUTING from automatic HTML conversion
When running `make` to generate the HTML version of the site, all
Markdown files are automatically found and converted - including
README.md and CONTRIBUTING.md.

These two aren't really wanted, and the resulting HTML versions need to
be ignored or deleted. It's not sufficient to add them to .gitignore,
because they'll still be there in the filesystem causing confusion, even
if the risk of committing them to Git is minimized.

This change filters them out of the Makefile's argument list of Markdown
files that should be automatically converted to HTML, so the unwanted
versions don't get generated in the first place.

Before:

```
$ make
pandoc -f markdown-smart+autolink_bare_uris --template index.tmpl CONTRIBUTING.md -o CONTRIBUTING.html
pandoc -f markdown-smart+autolink_bare_uris --template index.tmpl README.md -o README.html
```

After:

```
$ make
make: Nothing to be done for 'all'.
```
2018-11-28 06:41:11 -08:00
2017-04-28 17:23:15 -07:00
2016-02-11 14:43:57 -08:00
2017-01-04 06:44:32 -08:00
2016-02-11 15:12:29 -08:00
2016-02-11 14:43:57 -08:00

% README

The plaintextaccounting.org website.

plaintextaccounting.org is an informative portal for Ledger, hledger, beancount, and the other ledger-likes.

The repo is named plaintextaccounting.github.io to make it the Github Pages site for the plaintextaccounting organization, so that it can be served with a custom domain, plaintextaccounting.org.

Contributing Quick-start

For full instructions on contributing, see CONTRIBUTING.md.

  1. Fork this repository.
  2. Make changes to the md files, css, etc. Don't change the html files.
  3. Run make to regenerate the html files.
  4. Commit.
  5. Push to a branch on your fork.
  6. Submit a pull request.
Languages
HTML 32.3%
Makefile 20.2%
CSS 16.4%
Lua 14.2%
Shell 9.9%
Other 7%