<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Troy,<br>
    <br>
    I found it takes both of these conditions to cause the problem. <br>
            key->Headings(true);<br>
            book->setSkipConsecutiveLinks(true);<br>
    <br>
    The program below outputs
    <meta name="qrichtext" content="1">
    <span style=" font-family:'Monospace'; font-size:9pt;
      color:#1a1a1a;"> Malachi 1:1</span><!--EndFragment-->
    <meta http-equiv="Content-Type" content="text/html;
      charset=ISO-8859-1">
    <style type="text/css">
p, li { white-space: pre-wrap; }
</style><br>
    <br>
    Should BibleTime do something different or is this a sword issue.<br>
    <br>
    Gary<br>
    <br>
    #include <iostream><br>
    #include <swmgr.h><br>
    #include <swmodule.h><br>
    #include <versekey.h><br>
    <br>
    using namespace sword;<br>
    using namespace std;<br>
    <br>
    int main(int argc, char **argv) {<br>
    <br>
            const char *modName = "HunKar";<br>
            SWMgr library;<br>
            SWModule *book = library.getModule(modName);<br>
            if (!book) {<br>
                    cerr << "Can't find module: " << modName
    << endl;<br>
                    return -1;<br>
            }<br>
            VerseKey* key = ((VerseKey *)book->getKey());<br>
    <br>
            key->Headings(true);<br>
            book->setSkipConsecutiveLinks(true);<br>
            book->setPosition(TOP);<br>
    <br>
            cout << *key << endl;<br>
            return 0;<br>
    }<br>
    <br>
  </body>
</html>