File: doc.go

package info (click to toggle)
golang-github-tideland-golib 4.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,144 kB
  • sloc: makefile: 4
file content (18 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (2)
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