Parcourir la source

add parsing 敘述title

weichen il y a 3 ans
Parent
commit
608c808541
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      backstage/static/js/parsers.js

+ 4 - 0
backstage/static/js/parsers.js

@@ -63,6 +63,10 @@ const parseTitle = line => {
   var title = '';
   title = line.replace('### **', '');
   title = title.replace('**', '');
+  if (title.includes('敘述')) {
+    title = title.replace('<!-- ', '');
+    title = title.replace('-->', '');
+  }
   return title;
 };