Index: document/src/main.jsx =================================================================== diff -u -r7a06d3dd8d4b01bb052b5a0c080f4effd8ea3349 -ra1bff2d2d1b4d1c43210fe65920b0d64f620ea2b --- document/src/main.jsx (.../main.jsx) (revision 7a06d3dd8d4b01bb052b5a0c080f4effd8ea3349) +++ document/src/main.jsx (.../main.jsx) (revision a1bff2d2d1b4d1c43210fe65920b0d64f620ea2b) @@ -9,8 +9,8 @@ createRoot(document.getElementById('root')).render( {/* -- React-Router-dom -- BrowserRouter : URL 변경 시 렌더링할 컴포넌트 */} - - {/* */} + {/* */} + , Index: document/src/reducer/linkFetchReducer.jsx =================================================================== diff -u -r23907ac2479dd916eacc374dffc7b88381a488bd -ra1bff2d2d1b4d1c43210fe65920b0d64f620ea2b --- document/src/reducer/linkFetchReducer.jsx (.../linkFetchReducer.jsx) (revision 23907ac2479dd916eacc374dffc7b88381a488bd) +++ document/src/reducer/linkFetchReducer.jsx (.../linkFetchReducer.jsx) (revision a1bff2d2d1b4d1c43210fe65920b0d64f620ea2b) @@ -58,9 +58,19 @@ // }} /> )} + // if (domNode.name === "header") { + // return
+ // } if (domNode.name === "header") { - return
+ // Iterate over the children of the header + domNode.children.forEach((child) => { + if (child.name === "h4") { + // Modify the

element as needed + child.attribs.class += ' hidden' + } + }) } + if (domNode.name === "section" && domNode.attribs.id === "bo_v_info") { return
}