Skip to content

Commit

Permalink
updated with foliaspec.py from foliatools devleop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Nov 5, 2024
1 parent 2da3d4f commit 764da3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/libfolia/folia_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ ENDTIME=128, ///<endtime: A timestamp in ``HH:MM:SS.MMM`` format, indicating th
SRC=256, ///<src: Points to a file or full URL of a sound or video file. This attribute is inheritable.
SPEAKER=512, ///<speaker: A string identifying the speaker. This attribute is inheritable. Multiple speakers are not allowed, simply do not specify a speaker on a certain level if you are unable to link the speech to a specific (single) speaker.
TEXTCLASS=1024, ///<textclass: Refers to the text class this annotation is based on. This is an advanced attribute, if not specified, it defaults to ``current``. See :ref:`textclass_attribute`.
METADATA=2048,
METADATA=2048,
IDREF=4096, ///<id: A reference to the ID of another element. This is a reference and not an assignment, unlike xml:id, so do not confuse the two! It is only supported on certain elements that are referential in nature.
SPACE=8192, ///<space: This attribute indicates whether spacing should be inserted after this element (it's default value is always ``yes``, so it does not need to be specified in that case), but if tokens or other structural elements are glued together then the value should be set to ``no``. This allows for reconstruction of the detokenised original text.
SPACE=8192, ///<space: This attribute indicates whether spacing should be inserted after this element (it's default value is always ``yes``, so it does not need to be specified in that case), but if tokens or other structural elements are glued together then the value should be set to ``no``. This allows for reconstruction of the detokenised original text.
TAG=16384, ///<tag: Contains a space separated list of processing tags associated with the element. A processing tag carries arbitrary user-defined information that may aid in processing a document. It may carry cues on how a specific tool should treat a specific element. The tag vocabulary is specific to the tool that processes the document. Tags carry no instrinsic meaning for the data representation and should not be used except to inform/aid processors in their task. Processors are encouraged to clean up the tags they use. Ideally, published FoLiA documents at the end of a processing pipeline carry no further tags. For encoding actual data, use ``class`` and optionally features instead.
ALL=32768 };

Expand Down
2 changes: 1 addition & 1 deletion src/folia_properties.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "libfolia/folia_properties.h"

//foliaspec:header
//This file was last updated according to the FoLiA specification for version 2.5.3 on 2024-11-05 17:26:39, using foliaspec.py
//This file was last updated according to the FoLiA specification for version 2.5.3 on 2024-11-05 17:44:08, using foliaspec.py
//Code blocks after a foliaspec comment (until the next newline) are automatically generated. **DO NOT EDIT THOSE** and **DO NOT REMOVE ANY FOLIASPEC COMMENTS** !!!

namespace folia {
Expand Down

0 comments on commit 764da3c

Please sign in to comment.