[sword-cvs] sword/src/modules/filters gbfhtmlhref.cpp,1.16,1.17

sword@www.crosswire.org sword@www.crosswire.org
Sat, 10 May 2003 13:21:55 -0700


Update of /usr/local/cvsroot/sword/src/modules/filters
In directory www:/tmp/cvs-serv5219

Modified Files:
	gbfhtmlhref.cpp 
Log Message:
fix bold tag and remove space from italic tag

Index: gbfhtmlhref.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/modules/filters/gbfhtmlhref.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** gbfhtmlhref.cpp	4 Mar 2003 04:19:46 -0000	1.16
--- gbfhtmlhref.cpp	10 May 2003 20:21:52 -0000	1.17
***************
*** 29,36 ****
  	addTokenSubstitute("Rf", ")</small></font>");
  	addTokenSubstitute("Rx", "</a>");
! 	addTokenSubstitute("FI", "<i> "); // italics begin
! 	addTokenSubstitute("Fi", " </i>");
! 	addTokenSubstitute("FB", "<n>"); // bold begin
! 	addTokenSubstitute("Fb", "</n>");
  	addTokenSubstitute("FR", "<font color=\"#FF0000\">"); // words of Jesus begin
  	addTokenSubstitute("Fr", "</font>");
--- 29,36 ----
  	addTokenSubstitute("Rf", ")</small></font>");
  	addTokenSubstitute("Rx", "</a>");
! 	addTokenSubstitute("FI", "<i>"); // italics begin
! 	addTokenSubstitute("Fi", "</i>");
! 	addTokenSubstitute("FB", "<b>"); // bold begin
! 	addTokenSubstitute("Fb", "</b>");
  	addTokenSubstitute("FR", "<font color=\"#FF0000\">"); // words of Jesus begin
  	addTokenSubstitute("Fr", "</font>");