Changeset 8b869d1


Ignore:
Timestamp:
10/13/2004 05:24:47 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
6.0
Children:
ef19c81
Parents:
47860dc
Message:

Using the patched tidy to fix the look of command blocks in XHTML output.
Moved goTidy script to contrib.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.0/BOOK@4278 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • Makefile

    r47860dc r8b869d1  
    44NOCHUNKS_OUTPUT=LFS-BOOK.html
    55XSLROOTDIR=/usr/share/xml/docbook/xsl-stylesheets-current
     6TIDY=/home/manuel/bin/lfs-tidy
    67
    78lfs:
     
    3031        rm $(BASEDIR)/lfs-html.xml
    3132
    32         sh goTidy $(BASEDIR)/
     33        for filename in `find $(BASEDIR) -name "*.html"`; do \
     34          $(TIDY) -config tidy.conf $$filename; \
     35          true; \
     36        done;
    3337
    3438        for filename in `find $(BASEDIR) -name "*.html"`; do \
     
    6165        xsltproc --xinclude --nonet --output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
    6266          stylesheets/lfs-nochunks.xsl index.xml
    63         tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
     67        $(TIDY) -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
    6468
    6569validate:
Note: See TracChangeset for help on using the changeset viewer.