Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
변경점
figure
태그로 감싸지고, 이미지 설명들은figcaption
태그로 감싸져서 이미지를 설명하게 됩니다.![백준 로고](https://velog.velcdn.com/images/dding-g/post/0071922c-1332-4b33-90e6-d34c61967056/image.png)
와 같이 사용된 태그들은 caption이 붙습니다.paragraph
태그 안에img
태그가 들어갔는데, plugin에서node.type
을 html 로 주게 되어 더이상 p 태그 안으로 들어가지 않습니다. 기존에p > img
로 처리되고 있던 css들은figure
와img
태그에 적절히 나누었습니다.img
태그를 수동으로 html로 넣는 경우, 이미지 가운데 정렬이 안되는 경우가 있어서img
태그 안에margin: auto
속성을 추가했습니다.