remove font from toc

This commit is contained in:
Riccardo Mottola 2024-08-07 00:16:34 +02:00
parent 6df0930f33
commit 322106a4d2

View file

@ -1978,8 +1978,7 @@ main(int argc, char **argv, char **env)
// file for top-left frame (header only; rest appended below)
idxIndexFile = [@"MainIndex" stringByAppendingPathExtension: @"html"];
[idxIndex setString: @"<HTML>\n <BODY>\n"
@" <FONT FACE=\"sans\" SIZE=\"+1\"><B>Index</B></FONT><BR/><BR/>\n"
@" <FONT FACE=\"sans\" SIZE=\"-1\">"];
@" <B>Index</B><BR/>\n"];
// this becomes index.html
framesetFile = [@"index" stringByAppendingPathExtension: @"html"];
@ -2041,7 +2040,7 @@ main(int argc, char **argv, char **env)
[idxIndex appendFormat:
@"&nbsp;(<A HREF=\"%@.html\" TARGET=\"_top\">unframe</A>)\n",
project];
[idxIndex appendString: @" </FONT>\n </BODY>\n</HTML>\n"];
[idxIndex appendString: @" </BODY>\n</HTML>\n"];
[idxIndex writeToFile:
[documentationDirectory stringByAppendingPathComponent: idxIndexFile]
atomically: YES];