주석을 사용하여 특정 파일 또는 파일의 링크 서브세트에서 링크 빌더가 실행되지 않도록 할 수 있습니다.
<!-- <META name="links-collection-enabled" content="false"> -->
컨텐츠를 false로 설정하면 파일의 해당 지점 이후 링크 정보가 수집되지 않습니다. 이 태그는 나중에 파일에서 컨텐츠 값을 true로 지정하여 파일의 나머지 부분에 대한 링크 콜렉션을 사용할 수 있습니다. 이러한 방식으로 전체 파일의 유효성 검증 및 리팩토링을 해제하거나 링크 빌더에 대해 사용 불가능 또는 사용 가능하도록 특정 링크를 분리할 수 있습니다.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <!-- <META name="links-collection-enabled" content="false"> --> <META http-equiv="Content-Type" content="text/xml"> <META name="GENERATOR" content="IBM Rational Software Development Platform"> <TITLE>testy.html</TITLE> </HEAD> <BODY> <a href="a.html"></a> <a href="b.html"></a> <a href="c.html"></a> </BODY> </HTML>파일에 있는 링크의 유효성은 검증되지 않습니다.
<!-- <META name="links-collection-enabled" content="true"> --> <a href="b.html"></a> <!-- <META name="links-collection-enabled" content="false"> -->
<!-- <META name="links-collection-enabled" content="false"> --> <a href="c.html"></a> <!-- <META name="links-collection-enabled" content="true"> -->