fix(M01): 시중물가 줄 저장 때 안쪽 묶음 띄어쓰기 안 바뀌게 · 줄 목록에 하위 거름(sub)과 참조 이름(refs)

- 저장기: 바깥 묶음과 안쪽 묶음의 띄어쓰기를 따로 옛 글에서 읽어 그대로 씀
- /rows: sub(조사·세부분류) 거름 · 참조 칸 키의 이름 refs

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016WRFJmmhPi4exAzHgPZHMT
This commit is contained in:
2026-09-20 02:16:19 +09:00
co-authored by Claude Sonnet 5
parent 32b19c547d
commit d1e2132109
3 changed files with 79 additions and 8 deletions
+4 -2
View File
@@ -69,8 +69,10 @@ def get_files(group: str) -> dict:
@router.get("/rows")
def get_rows(file: str, page: int = 1, size: int = 50, q: str = "", unlinked: bool = False) -> dict:
return _call(store.rows, file, page, size, q, unlinked)
def get_rows(
file: str, page: int = 1, size: int = 50, q: str = "", unlinked: bool = False, sub: str = ""
) -> dict:
return _call(store.rows, file, page, size, q, unlinked, sub)
@router.get("/tables")