chrisprice / t-d3fc

A service powering a collection of tweet-sized d3 creations

Home Page:https://t.d3fc.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hashtags are removed from tweet

owennw opened this issue · comments

Even inadvertent ones:

(rn(0,6)).a({rx:9,ry:2,cx:(d,i)=>2_i+150_s(t/4e2)}).y({fill:d=>'#'+String.fromCharCode(70-d)+'13',stroke:'#C13'}) https://t.d3fc.io

The stroke code is not parsed on the website.

Should note that this works in the playground, so is most likely just a parsing error.

The implementation currently strips everything which Twitter defines as an entity and then attempts to parse the result using babel. If this is successful it makes it on to the site.

The entity stripping is done as an easy and reliable way of removing any leading or trailing @mentions, #hashtags or other URLs.

Currently the only way around this would be to split the string after the # e.g. stroke:'#'+'c13'.

I don't think I'm going to change the behaviour because it's an easy rule to understand. However, it is annoying that the playground doesn't also implement this functionality. Not sure of a good way of copying the behaviour though.