我正在使用dflydev 的 markdown,它基于michelf 的项目将 Markdown 转换为 HTML。
我的网站默认为 RTL,我想添加一个自定义标签以允许左对齐段落,
例如:
regular text, right aligned.
<- some text that will be aligned to the left
<--
fenced text that will be aligned to the left
<--
我正在尝试构建正则表达式模式来捕获这些块:
- 因为
<- ...
我有:/^<- ([^\n]+)/
- 对于围栏块,我无法获得工作模式
我想获得有关围栏块正则表达式和改进我已经拥有的单行正则表达式的帮助。
谢谢!