mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Merge pull request #2927 from JSey/patch-2
BUG: phpBB lists not properly converted
This commit is contained in:
commit
daea4f82b4
1 changed files with 8 additions and 2 deletions
|
@ -306,6 +306,12 @@ class ImportScripts::PhpBB3 < ImportScripts::Base
|
||||||
s.gsub!(internal_url_regexp) do |phpbb_link|
|
s.gsub!(internal_url_regexp) do |phpbb_link|
|
||||||
replace_internal_link(phpbb_link, $1, import_id)
|
replace_internal_link(phpbb_link, $1, import_id)
|
||||||
end
|
end
|
||||||
|
# convert list tags to ul and list=1 tags to ol
|
||||||
|
# (basically, we're only missing list=a here...)
|
||||||
|
s.gsub!(/\[list\](.*?)\[\/list:u\]/m, '[ul]\1[/ul]')
|
||||||
|
s.gsub!(/\[list=1\](.*?)\[\/list:o\]/m, '[ol]\1[/ol]')
|
||||||
|
# convert *-tags to li-tags so bbcode-to-md can do its magic on phpBB's lists:
|
||||||
|
s.gsub!(/\[\*\](.*?)\[\/\*:m\]/, '[li]\1[/li]')
|
||||||
|
|
||||||
s
|
s
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue