Open zcorpan opened 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.
(^|[^0-9A-Z&\/\?]+)
)\n
Could it be (^|\s+) instead?
(^|\s+)
Consider a post like this:
The imported post will be:
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?