]> gitweb.factorcode.org Git - factor.git/blob - extra/id3/id3-docs.factor
spiff up id3 docs a bit, and fix help-lint
[factor.git] / extra / id3 / id3-docs.factor
1 ! Copyright (C) 2008 Tim Wawrzynczak
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax sequences kernel ;
4 IN: id3
5
6 HELP: file-id3-tags
7 { $values 
8     { "path" "a path string" } 
9     { "object/f" "a tuple storing ID3 metadata or f" } }
10 { $description "Return a tuple containing the ID3 information parsed out of the MP3 file, or " { $link f } " if no metadata is present." } ;
11
12 ARTICLE: "id3" "ID3 tags"
13 "The " { $vocab-link "id3" } " vocabulary contains words for parsing " { $emphasis "ID3" } " tags, which are textual fields storing an MP3's title, artist, and other metadata." $nl
14 "Parsing ID3 tags from an MP3 file:"
15 { $subsection file-id3-tags } ;
16
17 ABOUT: "id3"