|
@@ -142,6 +142,10 @@ func CygxResearchSummary(cont context.Context) (err error) {
|
|
|
}
|
|
|
annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
|
|
|
annotation = strings.ReplaceAll(annotation, "</strong>", "")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
annotation = re.ReplaceAllString(annotation, "")
|
|
|
logItem := data_manage.CygxResearchSummaryLog{
|
|
@@ -244,6 +248,10 @@ func CygxResearchSummary(cont context.Context) (err error) {
|
|
|
}
|
|
|
annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
|
|
|
annotation = strings.ReplaceAll(annotation, "</strong>", "")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
annotation = re.ReplaceAllString(annotation, "")
|
|
|
logItem := data_manage.CygxResearchSummaryLog{
|
|
@@ -347,6 +355,10 @@ func CygxResearchSummary(cont context.Context) (err error) {
|
|
|
}
|
|
|
annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
|
|
|
annotation = strings.ReplaceAll(annotation, "</strong>", "")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
annotation = re.ReplaceAllString(annotation, "")
|
|
|
logItem := data_manage.CygxResearchSummaryLog{
|
|
@@ -436,6 +448,10 @@ func CygxResearchSummary(cont context.Context) (err error) {
|
|
|
head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
|
|
|
body := strings.ReplaceAll(article.Body, "<strong>", "")
|
|
|
body = strings.ReplaceAll(body, "</strong>", "")
|
|
|
+ body = strings.ReplaceAll(body, "</ol>", "</div>")
|
|
|
+ body = strings.ReplaceAll(body, "<ol>", "<div>")
|
|
|
+ body = strings.ReplaceAll(body, "</li>", "</p>")
|
|
|
+ body = strings.ReplaceAll(body, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
body = re.ReplaceAllString(body, "")
|
|
|
//研选的公司需要单独处理
|
|
@@ -633,6 +649,10 @@ func CygxLastWeekSummary(cont context.Context) (err error) {
|
|
|
}
|
|
|
annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
|
|
|
annotation = strings.ReplaceAll(annotation, "</strong>", "")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
annotation = re.ReplaceAllString(annotation, "")
|
|
|
logItem := data_manage.CygxMinutesSummaryLog{
|
|
@@ -736,6 +756,10 @@ func CygxLastWeekSummary(cont context.Context) (err error) {
|
|
|
}
|
|
|
annotation := strings.ReplaceAll(article.Annotation, "<strong>", "")
|
|
|
annotation = strings.ReplaceAll(annotation, "</strong>", "")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</ol>", "</div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<ol>", "<div>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "</li>", "</p>")
|
|
|
+ annotation = strings.ReplaceAll(annotation, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
annotation = re.ReplaceAllString(annotation, "")
|
|
|
logItem := data_manage.CygxMinutesSummaryLog{
|
|
@@ -826,6 +850,10 @@ func CygxLastWeekSummary(cont context.Context) (err error) {
|
|
|
head := "<div class=\"title-content\">\n 【" + article.Title + "】 "
|
|
|
body := strings.ReplaceAll(article.Body, "<strong>", "")
|
|
|
body = strings.ReplaceAll(body, "</strong>", "")
|
|
|
+ body = strings.ReplaceAll(body, "</ol>", "</div>")
|
|
|
+ body = strings.ReplaceAll(body, "<ol>", "<div>")
|
|
|
+ body = strings.ReplaceAll(body, "</li>", "</p>")
|
|
|
+ body = strings.ReplaceAll(body, "<li>", "<p>")
|
|
|
re, _ := regexp.Compile("<strong.*?>")
|
|
|
body = re.ReplaceAllString(body, "")
|
|
|
//研选的公司需要单独处理
|