-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have a CONTRIBUTING.md #18
Comments
There is this project https://github.com/executablebooks/rst-to-myst from the same folks behind |
@abravalheri @FlorianWilhelm do you think a new release of the extension can be done at this point? I would quite like to use it in one of my large projects, for example, and the recent MyST based changes etc. would be great to have. |
Hi @DrShushen, thank you very much for the comment. Although we don't use any I did the following test (here I use $ cd /tmp
$ rm -rf myproj
$ pip-run pyscaffold git+https://github.com/pyscaffold/pyscaffoldext-markdown -- -m pyscaffold.cli myproj --markdown
$ tree myproj
myproj
├── AUTHORS.md
├── CHANGELOG.md
├── CONTRIBUTING.md # <---
├── LICENSE.txt
├── README.md
├── docs
│ ├── Makefile
│ ├── _static
│ ├── authors.md
│ ├── changelog.md
│ ├── conf.py
│ ├── contributing.md
│ ├── index.md
│ ├── license.md
│ ├── readme.md
│ └── requirements.txt
├── pyproject.toml
├── setup.cfg
├── setup.py
├── src
│ └── myproj
│ ├── __init__.py
│ └── skeleton.py
├── tests
│ ├── conftest.py
│ └── test_skeleton.py
└── tox.ini @FlorianWilhelm, do you think we are in a good shape for releasing a new version of |
@abravalheri, yes, seems like I forgot this. Let's have a new release to get this out. Do you want to release it? Thanks :-) |
No problems, I updated the CHANGELOG and I created a draft for the new release. I will just wait the CI to pass again. If we prefer to have the |
@DrShushen , the new release is out :) |
That's fantastic, thanks! |
Thanks a lot @abravalheri! |
Describe your use-case
Since PyScaffold itself will have a
CONTRIBUTING.rst
we should make sure that in a new version of this extension, this file is replaced with a corresponding Markdown counterpart.Describe the solution you would like to see for your use-case
Maybe there is even a simple rst2md converter, which would allow us to manage only a single template?
The text was updated successfully, but these errors were encountered: