2017-01-09, 10:46 PM
Hey,
I'm currently trying to implement some level of div-based image / text inlining and floating on my board for greater post formatting control, however I want to restrict the [div] tag's formatting options to only valid values of the CSS float, display and width properties using regex to search for these specific words in the tag. However, I can't seem to get it to work properly.
Here's the current state of my probably terrible regex:
Some pointers would be appreciated.
Thanks!
I'm currently trying to implement some level of div-based image / text inlining and floating on my board for greater post formatting control, however I want to restrict the [div] tag's formatting options to only valid values of the CSS float, display and width properties using regex to search for these specific words in the tag. However, I can't seem to get it to work properly.
Here's the current state of my probably terrible regex:
\[div float="([right|left|none]+)" display="\([inline|inline-block|inherit|none]+)" width="(.*?)"\](.*?)\[/div\]
<div style="float:$1; display:$2; width:$3%;">$4</div>
Some pointers would be appreciated.
Thanks!