Franklin Yu

Results 335 comments of Franklin Yu

Switching to markdown-it *will* break something because many fixes are "breaking fix". I think it is safer to do the switch in next major version of Jingo. Also: https://softwareengineering.stackexchange.com/questions/368030/is-a-breaking-change-bug-fix-a-semver-patch-or-a-major

I would suggest to save it as normal file. When Jingo render it, if the file contains the magic words, return a redirection instead of “200 OK” rendering the words.

It’s easy to find the ISO URLs, but I would also like to update the Ruby script `iso_urls_update.rb`. It’s easy to find the full version given the channel (20.03 currently),...

LGTM. By the way, I tried to find a documentation page for the XML from S3; the URL matches request syntax of [REST API ListOpjects](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html), but the response doesn’t match...

### questions > you can use Markdown or RDoc style links in docstrings to link. I understand that I can use Markdown style link in text area, like ```ruby #...

I generated a project with the checkbox checked. The project properly compiles, but Eclipse tells a lot of errors.

About the implementation detail, a separator is needed, because it’s simply string concatenation instead of a real array. What could be the separator? I guess colon (`:`) isn’t great, since...

@shosatojp Thanks, that works. In addition, following doesn't work: ```javascript document.addEventListener('beforeunload', exit) ``` I have no idea why the event `beforeunload` doesn't work with `addEventListener`. Isn't `addEventListener` preferred?

Strictly speaking, [an empty body is not a valid JSON](https://stackoverflow.com/questions/30621802/why-does-json-parse-fail-with-the-empty-string). I use `{}` instead, but you may prefer `null`.