Gergő Erdősi
Gergő Erdősi
Conformance has a test for ipv4 and ipv6 addresses: https://github.com/twitter/twitter-text/blob/10a8a1852a2224afc11b0e39938700f36c7406ff/conformance/validate.yml#L129 However calling `extractUrlsWithIndices()` doesn't extract those URLs. This example code ``` javascript var twitter = require('twitter-text'); console.log(twitter.extractUrlsWithIndices('http://192.168.0.1/index.html?src=asdf')); ``` returns `[]`.
We talked about adding a rake task which automates TLD updates. Here is the first version. I'm looking for feedback, happy to make changes. My pull request here was generated...
The documentations says: > The first three arguments are the same as to JSON.stringify. But when I try to pass an array of strings as the second parameter, the module...
Nodemailer supports loading content from a file: ``` javascript var mail = { data: { html: { path: __dirname + '/fixtures/message.html' } } }; ``` An error is raised when...