this.wikiWordPath = makePath(currentPage, pagePath);
this.qualifiedName = currentPage.makeFullPathOfTarget(wikiWordPath);
}
public static String expandPrefix(WikiPage wikiPage, String theWord) {
PageCrawler crawler = wikiPage.getPageCrawler();
if (theWord.charAt(0) == '^' || theWord.charAt(0) == '>') {
String prefix = wikiPage.getName();
return String.format("%s.%s", prefix, theWord.substring(1));
} else if (theWord.charAt(0) == '<') {
String undecoratedPath = theWord.substring(1);