|
|
|
|
|
by godot
2938 days ago
|
|
One of my favorite things about the GitHub editors by far is easy image embedding. You can drag an image file into the textarea and it handles uploading it, and then puts in the correct markdown code for embedding that image. In fact, I consider that single feature the differentiator of Github's markdown editor. I use it all the time at work when wanting to post a screenshot to describe my issue, etc. It was actually the first thing I tried when loading up devpen.io. :) I realize that feature alone might be costly to build. You'd need somewhere to upload images to, maybe an S3 bucket, and maybe add a CDN, etc. Then you have to deal with abuse/have code to prevent infinitely large uploads, etc. It's not an easy feature, but thought I'd point it out as a potential thing to build. :) |
|