Commit d36467b6 authored by D's avatar D Committed by GitHub

Merge pull request #12217 from b3log/master

rebase
parents de2835f2 c5ea8598
...@@ -813,6 +813,11 @@ public class ArticleProcessor { ...@@ -813,6 +813,11 @@ public class ArticleProcessor {
final JSONObject author = articleQueryService.getAuthor(articles.get(0)); final JSONObject author = articleQueryService.getAuthor(articles.get(0));
filler.setArticlesExProperties(request, articles, author, preference); filler.setArticlesExProperties(request, articles, author, preference);
} else{
//Add by Zephyr:>
//如果进入setArticlesExProperties方法,方法内部有markdown的过程,而原归档查询已经做了markdown,造成二次解析
//将getArticlesByArchiveDate的MD注释,移到此处。
articleQueryService.markdowns(articles);
} }
sort(preference, articles); sort(preference, articles);
......
...@@ -669,7 +669,8 @@ public class ArticleQueryService { ...@@ -669,7 +669,8 @@ public class ArticleQueryService {
article.put(ARTICLE_CREATE_TIME, ((Date) article.get(ARTICLE_CREATE_DATE)).getTime()); article.put(ARTICLE_CREATE_TIME, ((Date) article.get(ARTICLE_CREATE_DATE)).getTime());
// Markdown to HTML for content and abstract // Markdown to HTML for content and abstract
markdown(article); //Delete by Zephyr:>在外部进行处理,避免出现重复处理的情况
//markdown(article);
ret.add(article); ret.add(article);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment