Blame Scripts/Functions/Tuneup/tuneup_doXhtml.sh

9f1608
#!/bin/bash
9f1608
#
66b51c
# tuneup_doXhtml.sh -- This function performs maintainance tasks for
66b51c
# XHTML files.
9f1608
#
9f5f2e
# Copyright (C) 2009-2011 Alain Reguera Delgado
9f1608
# 
7cd8e9
# This program is free software; you can redistribute it and/or
7cd8e9
# modify it under the terms of the GNU General Public License as
7cd8e9
# published by the Free Software Foundation; either version 2 of the
7cd8e9
# License, or (at your option) any later version.
9f1608
# 
9f1608
# This program is distributed in the hope that it will be useful, but
9f1608
# WITHOUT ANY WARRANTY; without even the implied warranty of
9f1608
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9f1608
# General Public License for more details.
9f1608
#
9f1608
# You should have received a copy of the GNU General Public License
9f1608
# along with this program; if not, write to the Free Software
9f1608
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
9f1608
# USA.
9f1608
# 
9f1608
# ----------------------------------------------------------------------
9f1608
# $Id$
9f1608
# ----------------------------------------------------------------------
8aa7eb
66b51c
function tuneup_doXhtml {
66b51c
66b51c
    # Transforms html headings to make them accessible (e.g., through
66b51c
    # a table of contents).
66b51c
    tuneup_doXhtmlHeadings
9f1608
9f1608
}