You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, while structured document tags are available for a document, programmatic access to the title and tag properties for each structured document tag is not. The API only provides access to the paragraphs.
Expected Behavior
Each StructuredDocumentTag object provides Alias() and Tag() functions.
for_, sdt:=rangedoc.StructuredDocumentTags() {
fmt.Printf("Alias: '%v'\n", sdt.Alias()) // returns an alias or empty string for the SDTfmt.Printf("Tag: '%v'\n", sdt.Tag()) // returns a tag or empty string for the SDT
}
Actual Behavior
No access to alias or tag for a structured document tag.
Please include a reproducible code snippet or document attachment that
demonstrates the issue.
The text was updated successfully, but these errors were encountered:
Description
Currently, while structured document tags are available for a document, programmatic access to the title and tag properties for each structured document tag is not. The API only provides access to the paragraphs.
Expected Behavior
Each
StructuredDocumentTag
object providesAlias()
andTag()
functions.Actual Behavior
No access to alias or tag for a structured document tag.
Please include a reproducible code snippet or document attachment that
demonstrates the issue.
The text was updated successfully, but these errors were encountered: