Jerakin
Jerakin
I have started on this. How does something like this look? I think that having practically having the whole folder structure would be the best. Then on the right side...
Yeah, if there is a lot of files there will be a scrollbar 
I was thinking that it would be really cool that if you had a structure like this ``` wiki/ ├─ gummi/ │ ├─ cupcake.md │ ├─ fruitcake.md ├─ gummi.md ├─...
I am also partial to a src layout. Are you looking into this and have something started or should I take a stab at it?
This is now ready for review. Let me know of any concerns you have with the Pull Request @Linbreux
Is it too hard to review? Maybe you want it broken down in to a couple of PRs?
~~Forgot to mention: To run the app `cd` into `src` and run it as a module `python -m wikmd.wiki` make sure you got the `-m` and no `.py`.~~ Recommended way...
> Is it possible to run the python -m wikmd.wiki command one level higher. (not in the src folder) Yes - but not without other "inconveniences". The recommended way to...
I moved the wiki template folder into the src to indicate that it's part of the app. I made a few updates to make sure that we can build the...
> So I'm not quite sure why the editable flag is needed. the `--editable` flag is to enable [development mode](https://setuptools.pypa.io/en/latest/userguide/development_mode.html). In short - if you use `--editable` the installed package...