Kaynağa Gözat

Revert "테스트"

This reverts commit 42ad6fcb3547c8bd8277d11be62d31ebfde5c189.
ect (or 2du) 8 yıl önce
ebeveyn
işleme
7f94d98cea

+ 1 - 1
set_mark/html_except.py → set_mark/html_pas.py

@@ -1,7 +1,7 @@
 import re
 import html
 
-def html_except(data):
+def html_pas(data):
     data = re.sub('%H%', '<', data)
     data = re.sub('%\/H%', '>', data)
 

+ 2 - 2
set_mark/include.py → set_mark/include_pas.py

@@ -6,10 +6,10 @@ import sqlite3
 from urllib import parse
 import re
 
-def url_fix(data):
+def url_pas(data):
     return parse.quote(data).replace('/','%2F')
     
-def include(conn, data, title, in_c, num, toc_y, fol_num):
+def include_pas(conn, data, title, in_c, num, toc_y, fol_num):
     curs = conn.cursor()
 
     category = ''

+ 0 - 0
set_mark/mid.py → set_mark/mid_pas.py


+ 0 - 0
set_mark/redirect.py → set_mark/redirect_pas.py


+ 4 - 4
set_mark/table.py

@@ -1,6 +1,6 @@
 import re
 
-def table_return(d, d2, d3, num = 0):
+def table_p(d, d2, d3, num = 0):
     table_class = 'class="'
     alltable = 'style="'
     celstyle = 'style="'
@@ -148,7 +148,7 @@ def table(data):
 
                     result = a.groups()
                     if result[1]:
-                        table_d = table_return(result[1], result[0], result[2])
+                        table_d = table_p(result[1], result[0], result[2])
                         alltable = table_d[0]
                         rowstyle = table_d[1]
                         celstyle = table_d[2]
@@ -188,7 +188,7 @@ def table(data):
 
                     result = b.groups()
                     if result[1]:
-                        table_d = table_return(result[1], result[0], result[2], num)
+                        table_d = table_p(result[1], result[0], result[2], num)
                         rowstyle = table_d[1]
                         celstyle = table_d[2]
                         row = table_d[3]
@@ -221,7 +221,7 @@ def table(data):
 
                     result = c.groups()
                     if result[1]:
-                        table_d = table_return(result[1], result[0], result[2], num)
+                        table_d = table_p(result[1], result[0], result[2], num)
                         celstyle = table_d[2]
                         row = table_d[3]
                         cel = table_d[4]

+ 0 - 0
set_mark/toc.py → set_mark/toc_pas.py