File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,9 @@ var crawler = new CeL.work_crawler({
107107
108108 // 取得作品的章節資料。 get_work_data()
109109 work_URL : function ( work_id ) {
110- return 'txt/' + work_id + '.htm' ;
110+ // 2024/8: 'txt/'
111+ // 2024/11/29: 'book/'
112+ return 'book/' + work_id + '.htm' ;
111113 } ,
112114 parse_work_data : function ( html , get_label , extract_work_data ) {
113115 // console.trace(html);
@@ -230,6 +232,37 @@ var crawler = new CeL.work_crawler({
230232
231233 text = CeL . work_crawler . fix_general_ADs ( text ) ;
232234
235+ /**
236+ * <code>
237+
238+ // https://69shuba.cx/txt/52895/34444656 第1章 我绑定了修仙模拟器
239+ <p>原文在六#9@书/吧看!</p>
240+
241+ </code>
242+ */
243+ text = text . replace ( / (?: < p > ) ? 原 文 在 [ ^ < > ] { 1 , 10 } 看 ! (?: < \/ p > ) ? / g, '' ) ;
244+
245+ /**
246+ * <code>
247+
248+ // https://69shuba.cx/txt/52895/39004157 别人练级我修仙,苟到大乘再出山 > 新书《我在高武时代掀起修仙狂潮》
249+ <p>请...您....收藏_6Ⅰ9Ⅰ书Ⅰ吧(六\\\九\\\书\\\吧!)</p>
250+
251+ </code>
252+ */
253+ text = text . replace ( / < p > 请 [ . _ \\ | ] * 您 [ . _ \\ | ] * 收 藏 [ ^ < > ] * ?书 Ⅰ 吧 [ ^ < > ] * ?< \/ p > / g,
254+ '' ) ;
255+
256+ /**
257+ * <code>
258+
259+ // https://69shuba.cx/txt/52895/39004157 别人练级我修仙,苟到大乘再出山 > 新书《我在高武时代掀起修仙狂潮》
260+ <p>无一错一首一发一内一容一在一6一9一书一吧一看!</p>
261+
262+ </code>
263+ */
264+ text = text . replace ( / < p > 无 一 错 一 首 一 发 一 内 一 容 [ ^ < > ] * ?< \/ p > / g, '' ) ;
265+
233266 /**
234267 * <code>
235268
You can’t perform that action at this time.
0 commit comments