c0af5f216f8ff00466f0d222cede7f491fd17d81 galt Fri Jan 20 23:09:35 2023 -0800 More fixes for stuff found by htmlCheck, refs #7914 diff --git src/hg/hgTables/usage.c src/hg/hgTables/usage.c index 461ea28..a0eb2a0 100644 --- src/hg/hgTables/usage.c +++ src/hg/hgTables/usage.c @@ -1,173 +1,173 @@ /* usage - functions that display helpful usage info text go here. -jk)*/ /* Copyright (C) 2013 The Regents of the University of California * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include "common.h" #include "jksql.h" #include "hgTables.h" static char *getGenomeSpaceText() /* Return GenomeSpace help text if it is enabled */ { if (isGenomeSpaceEnabled()) { return "
  • Send output to GenomeSpace: sends data to \n" " GenomeSpace Data Manager for use with\n" -" diverse computational tools.\n"; +" diverse computational tools.
  • \n"; } else { return ""; } } void printMainHelp() /* Put up main page help info. */ { hPrintf( "This section provides brief line-by-line descriptions of the Table \n" "Browser controls. For more information on using this program, see the \n" "Table \n" "Browser User's Guide.\n" " \n" , getGenomeSpaceText() ); }