|
|
|
@ -3,7 +3,7 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
|
|
|
|
|
def change
|
|
|
|
|
def ke_transform_to_md content
|
|
|
|
|
return content if content.blank?
|
|
|
|
|
s_contents = sanitize(content, tags: %w(img a span 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 />")
|
|
|
|
|
.gsub("\t", "").gsub("\n", "").gsub(" ", " ").gsub(/(<br\s?\/?>)+/, "<br />")
|
|
|
|
|
end
|
|
|
|
@ -15,10 +15,12 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
|
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
|
#试卷的标题
|
|
|
|
|
# ExerciseQuestion.find_each do |eq|
|
|
|
|
|
# question_title = ke_transform_to_md eq.question_title
|
|
|
|
|
# eq.update_column(:question_title, question_title)
|
|
|
|
|
# end
|
|
|
|
|
ExerciseQuestion.where(:id => 25599).find_each do |eq|
|
|
|
|
|
puts("#eq.question_title: #{eq.question_title}")
|
|
|
|
|
question_title = ke_transform_to_md eq.question_title
|
|
|
|
|
puts("#question_title: #{question_title}")
|
|
|
|
|
#eq.update_column(:question_title, question_title)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# # 试卷的答案
|
|
|
|
|
# ExerciseStandardAnswer.find_each do |esa|
|
|
|
|
@ -27,10 +29,10 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
|
|
|
|
|
# end
|
|
|
|
|
#
|
|
|
|
|
# 试卷题库的问题标题
|
|
|
|
|
ExerciseBankQuestion.find_each do |ebq|
|
|
|
|
|
question_title = ke_transform_to_md ebq.question_title
|
|
|
|
|
ebq.update_column(:question_title, question_title)
|
|
|
|
|
end
|
|
|
|
|
# ExerciseBankQuestion.find_each do |ebq|
|
|
|
|
|
# question_title = ke_transform_to_md ebq.question_title
|
|
|
|
|
# ebq.update_column(:question_title, question_title)
|
|
|
|
|
# end
|
|
|
|
|
#
|
|
|
|
|
# # 试卷答案
|
|
|
|
|
# ExerciseBankStandardAnswer.find_each do |ebsa|
|