view src/testdir/test33.ok @ 5271:25f67b62afd8 v7.4b.012

updated for version 7.4b.012 Problem: Output from a shell command is truncated at a NUL. (lcd 47) Solution: Change every NUL into an SOH.
author Bram Moolenaar <bram@vim.org>
date Sat, 03 Aug 2013 14:10:50 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

(defun html-file (base)
  (format nil "~(~A~).html" base))

(defmacro page (name title &rest body)
  (let ((ti (gensym)))
       `(with-open-file (*standard-output*
			 (html-file ,name)
			 :direction :output
			 :if-exists :supersede)
			(let ((,ti ,title))
			     (as title ,ti)
			     (with center 
				   (as h2 (string-upcase ,ti)))
			     (brs 3)
			     ,@body))))

;;; Utilities for generating links

(defmacro with-link (dest &rest body)
  `(progn
    (format t "<a href=\"~A\">" (html-file ,dest))
    ,@body
    (princ "</a>")))