From 7e714df1ef0dfa3ccaeddfbdb86d5ce2bca8c7d6 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 20 Nov 2008 23:29:48 +0100 Subject: Add `(skribilo table)'. --- src/guile/skribilo/table.scm | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/guile/skribilo/table.scm (limited to 'src') diff --git a/src/guile/skribilo/table.scm b/src/guile/skribilo/table.scm new file mode 100644 index 0000000..440264f --- /dev/null +++ b/src/guile/skribilo/table.scm @@ -0,0 +1,57 @@ +;;; table.scm -- Routines to operate on `table' markups. +;;; +;;; Copyright 2008 Ludovic Courtès +;;; Copyright 2001 Manuel Serrano +;;; +;;; +;;; This program is free software; you can redistribute it and/or modify +;;; it under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 2 of the License, or +;;; (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with this program; if not, write to the Free Software +;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, +;;; USA. + +(define-module (skribilo table) + :use-module (skribilo ast) + :use-module (skribilo utils syntax) + + :export (table-column-count)) + +;;; Author: Manuel Serrano, Ludovic Courtès +;;; +;;; Commentary: +;;; +;;; This module provides utility functions to operate on `table' ASTs. It is +;;; partly based on code from Scribe 1.1a. +;;; +;;; Code: + +(fluid-set! current-reader %skribilo-module-reader) + + +(define (table-column-count t) + ;; Return the number of columns contained in table T. + (define (row-columns row) + (let loop ((cells (markup-body row)) + (nbcols 0)) + (if (null? cells) + nbcols + (loop (cdr cells) + (+ nbcols (markup-option (car cells) :colspan)))))) + + (let loop ((rows (markup-body t)) + (nbcols 0)) + (if (null? rows) + nbcols + (loop (cdr rows) + (max (row-columns (car rows)) nbcols))))) + +;;; table.scm ends here -- cgit v1.2.3