Let's say I have these links on page A.html: <a href="B.html#section1">Section 1</a> <a href="B.html#section2">Section 2</a> <a href="B.html#section3">Section 3</a> Code (markup): They all point to the same page B.html so all of them will have the same content. Can this be considered duplicate content by Google? Is Google smart enough to recognize anchor links?
use the "nofollow" tag in order to avoid any doubts, for example: <a href="B.html#section1" rel="nofollow">Section 1</a> etc...