12 lines
248 B
Python
12 lines
248 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
머리말/꼬리말 추출 도구
|
|
"""
|
|
import re
|
|
|
|
def extract_header(raw_xml: dict, parsed: dict = None) -> list | None:
|
|
return []
|
|
|
|
def extract_footer(raw_xml: dict, parsed: dict = None) -> list | None:
|
|
return []
|