SCKorea / sc-backend

스타시티즌에 대한 한국어 패치를 배포하고 게임 뉴스를 DeepL 기반으로 번역하여 제공하는 서비스
https://sc.galaxyhub.kr/
1 stars 0 forks source link

fix: Asciidoc 스니펫 파일의 띄어쓰기로 인한 깨짐 문제를 수정한다. #45

Closed seokjin8678 closed 11 months ago

seokjin8678 commented 11 months ago

이슈 내용

src/test/resources/org/springframework/restdocs/templates/response-fields.snippet 파일이 다음과 같이 들여쓰기로 되어있습니다.

====Response Fields
    |===
    |필드명|타입|설명|null여부

{{#fields}}
    |{{#tableCellContent}}`+{{path}}+`{{/tableCellContent}}
    |{{#tableCellContent}}`+{{type}}+`{{/tableCellContent}}
    |{{#tableCellContent}}{{description}}{{/tableCellContent}}
    |{{#tableCellContent}}{{#optional}}true{{/optional}}{{^optional}}{{/optional}}{{/tableCellContent}}
{{/fields}}
    |===

때문에 Asciidoc 파일이 다음과 같이 깨지는 현상이 발생합니다. image

해당 스니펫은 다음과 같이 되어야 합니다.

==== Response Fields
|===
|필드명|타입|설명|null여부

{{#fields}}
|{{#tableCellContent}}`+{{path}}+`{{/tableCellContent}}
|{{#tableCellContent}}`+{{type}}+`{{/tableCellContent}}
|{{#tableCellContent}}{{description}}{{/tableCellContent}}
|{{#tableCellContent}}{{#optional}}true{{/optional}}{{^optional}}{{/optional}}{{/tableCellContent}}
{{/fields}}
|===