Luke Lee
Luke Lee
One simple approach for this would be to just use the [HTML differ](https://docs.python.org/2/library/difflib.html#difflib.HtmlDiff.make_table) from the Python `difflib` package. We still want a link to show the diff and branch on...
Another thing to consider is writing a small script users can run to create the details.json file for the article. This would be very easy to do and make sure...
That's a great idea. It's not on our roadmap because we're trying to focus on good support for 1 service at a time. However, we gladly accept pull requests ;)...
We should replace all calls to `flash` in the [views.api_save function](https://github.com/pluralsight/guides-cms/blob/master/pskb_website/views.py#L582) since flashing from flask doesn't work well in our new design.
What's the best way to handle this. Maybe something as simple as making the ajax request forward the error message along as a query string and then change the editor...
There's no way to create notifications via the github API. Please let me know if I'm missing it. However, we could use `@mentions` to create a notification. The workflow would...
We could also add a button to the article view to create a pull request when the following conditions are met: - User is logged in - User is viewing...
The alternative is we always create a pull request when saving a branched version of the article. This way the conversation between the editor and original author gets started immediately....
One caveat to consider here is pull requests will take in every change between branches. So, there can only be 1 pull request open for a branch at a time....