From 9fe045d5dd254f7f23d101612edb3100000f69cc Mon Sep 17 00:00:00 2001
From: daiao <358551898@qq.com>
Date: Wed, 7 Aug 2019 14:54:01 +0800
Subject: [PATCH] =?UTF-8?q?=E8=AF=95=E5=8D=B7KE=E8=BF=81=E7=A7=BB?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...010551_modify_ke_contents_for_markdown.rb} | 22 +++++++++----------
1 file changed, 11 insertions(+), 11 deletions(-)
rename db/migrate/{20190805010550_modify_ke_contents_for_markdown.rb => 20190805010551_modify_ke_contents_for_markdown.rb} (64%)
diff --git a/db/migrate/20190805010550_modify_ke_contents_for_markdown.rb b/db/migrate/20190805010551_modify_ke_contents_for_markdown.rb
similarity index 64%
rename from db/migrate/20190805010550_modify_ke_contents_for_markdown.rb
rename to db/migrate/20190805010551_modify_ke_contents_for_markdown.rb
index 53c018b8b..4883a2f38 100644
--- a/db/migrate/20190805010550_modify_ke_contents_for_markdown.rb
+++ b/db/migrate/20190805010551_modify_ke_contents_for_markdown.rb
@@ -1,12 +1,12 @@
class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
include ActionView::Helpers::SanitizeHelper
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.gsub(">\n<", "><").gsub(/^\n/, "").gsub(" ", " ").gsub(/(\n)+/, "
")
- # .gsub("\t", " ").gsub("\n", "").gsub(" ", " ").gsub(/(
)+/, "
")
- # end
+ 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.gsub(">\n<", "><").gsub(/^\n/, "").gsub(" ", " ").gsub(/(\n)+/, "
")
+ .gsub("\t", " ").gsub("\n", "").gsub(" ", " ").gsub(/(
)+/, "
")
+ end
#
# # 课程讨论区
# MessageDetail.find_each do |m|
@@ -14,11 +14,11 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
# m.update_column(:content, content)
# end
- # 试卷的标题
- # ExerciseQuestion.find_each do |eq|
- # question_title = ke_transform_to_md eq.question_title
- # eq.update_column(:question_title, question_title)
- # end
+ 试卷的标题
+ ExerciseQuestion.find_each do |eq|
+ question_title = ke_transform_to_md eq.question_title
+ eq.update_column(:question_title, question_title)
+ end
# # 试卷的答案
# ExerciseStandardAnswer.find_each do |esa|