jtsternberg / DsgnWrks-Instagram-Importer

Backup your instagram photos & display your instagram archive. Supports importing to custom post-types & adding custom taxonomies.
http://wordpress.org/extend/plugins/dsgnwrks-instagram-importer/
33 stars 16 forks source link

"remove hashtags" removes too much #58

Open zcorpan opened 5 years ago

zcorpan commented 5 years ago

Consider a post like this:

Foo (bar, baz)
#thetag

The imported post will be:

Foo (bar, baz

Note the missing )

This is because the regex at

https://github.com/jtsternberg/DsgnWrks-Instagram-Importer/blob/01bae79a48506cc6b0b65d818aa426c4a46dbfec/dsgnwrks-instagram-importer.php#L1082

has (^|[^0-9A-Z&\/\?]+) which matches the )\n.

Could it be (^|\s+) instead?