|
|
@ -5,7 +5,8 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
|
|
|
|
return content if content.blank?
|
|
|
|
return content if content.blank?
|
|
|
|
s_contents = sanitize(content, tags: %w(img a table td tr tbody pre), attributes: %w(src href target style))
|
|
|
|
s_contents = sanitize(content, tags: %w(img a table td tr tbody pre), attributes: %w(src href target style))
|
|
|
|
s_contents.gsub(">\n<", "><").gsub(/^\n/, "").gsub(" ", "").gsub(/(\n)+/, "<br />")
|
|
|
|
s_contents.gsub(">\n<", "><").gsub(/^\n/, "").gsub(" ", "").gsub(/(\n)+/, "<br />")
|
|
|
|
.gsub("\t", "").gsub("\n", "").gsub(" ", " ").gsub(/(<br\s?\/?>)+/, "<br />")
|
|
|
|
.gsub("\t", "").gsub(" ", " ").gsub("\n", "")
|
|
|
|
|
|
|
|
.gsub(/(<br\s?\/?>)+/, "<br />")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# # 课程讨论区
|
|
|
|
# # 课程讨论区
|
|
|
@ -15,11 +16,11 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
|
|
|
#试卷的标题
|
|
|
|
#试卷的标题
|
|
|
|
ExerciseQuestion.where(:id => 25599).find_each do |eq|
|
|
|
|
ExerciseQuestion.find_each do |eq|
|
|
|
|
puts("#eq.question_title: #{eq.question_title}")
|
|
|
|
puts("#eq.question_title: #{eq.question_title}")
|
|
|
|
question_title = ke_transform_to_md eq.question_title
|
|
|
|
question_title = ke_transform_to_md eq.question_title
|
|
|
|
puts("#question_title: #{question_title}")
|
|
|
|
puts("#question_title: #{question_title}")
|
|
|
|
#eq.update_column(:question_title, question_title)
|
|
|
|
eq.update_column(:question_title, question_title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
# # 试卷的答案
|
|
|
|
# # 试卷的答案
|