1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
// Tideland Go Library - Simple Markup Language
//
// Copyright (C) 2009-2017 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
// Package sml of the Tideland Go Library provides a very simple
// markup language using a kind of LISP like notation with curly
// braces.
//
// The tag only consists out of the chars 'a' to 'z', '0' to '9'
// and '-'. Also several parts of the tag can be separated by colons.
// The package contains a kind of DOM as well as a parser and a
// processor. The latter is used e.g. for printing SML documents.
package sml
// EOF
|