MCPcopy Create free account

hub / github.com/PoiScript/orgize / functions

Functions431 in github.com/PoiScript/orgize

Methodnew
(input: &'a str)
src/syntax/combinator.rs:239
Methodnext
(&mut self)
src/syntax/element.rs:126
Methodnode_at_offset
Returns node in given offset ```rust use orgize::{Org, ast::Headline}; let org = Org::parse("\n\n* foo\n* bar"); assert!(org.node_at_offset::<Headl
src/org.rs:87
Functionnode_property_node
(input: Input)
src/syntax/drawer.rs:108
Methodoffset
(&self, second: &Self)
src/syntax/input.rs:239
Methodoptional
```rust use orgize::{Org, ast::AffiliatedKeyword}; let keyword = Org::parse("#+CAPTION: VALUE\nabc").first_node::<AffiliatedKeyword>().unwrap(); asse
src/ast/affiliated_keyword.rs:29
Methodorg
(&self)
wasm/src/lib.rs:28
Functionorg_table_node_base
(input: Input)
src/syntax/table.rs:17
Functionparagraph_node_base
(input: Input)
src/syntax/paragraph.rs:29
Functionparagraphs
()
tests/html.rs:79
Methodparameters
Optional header arguments ```rust use orgize::{Org, ast::InlineSrc}; let s = Org::parse("src_C{int a = 0;}").first_node::<InlineSrc>().unwrap(); ass
src/ast/inline_src.rs:34
Methodparameters
```rust use orgize::{Org, ast::SourceBlock}; let block = Org::parse("#+begin_src c :tangle yes\n#+end_src").first_node::<SourceBlock>().unwrap(); ass
src/ast/block.rs:63
Functionparse
()
src/syntax/cookie.rs:52
Functionparse
()
src/syntax/fn_def.rs:62
Functionparse
()
src/syntax/fixed_width.rs:66
Functionparse
()
src/syntax/document.rs:56
Functionparse
()
src/syntax/inline_call.rs:62
Functionparse
()
src/syntax/emphasis.rs:144
Functionparse
()
src/syntax/comment.rs:62
Functionparse
()
src/syntax/fn_ref.rs:60
Functionparse
()
src/syntax/subscript_superscript.rs:121
Functionparse
()
src/syntax/timestamp.rs:253
Functionparse
()
src/syntax/radio_target.rs:38
Functionparse
()
src/syntax/snippet.rs:34
Functionparse
()
src/syntax/latex_environment.rs:71
Functionparse
()
src/syntax/dyn_block.rs:79
Functionparse
()
src/syntax/link.rs:50
Functionparse
()
src/syntax/cloze.rs:77
Functionparse
()
src/syntax/drawer.rs:161
Functionparse
()
src/syntax/element.rs:179
Functionparse
()
src/syntax/latex_fragment.rs:130
Functionparse
()
src/syntax/entity.rs:74
Functionparse
()
src/syntax/target.rs:36
Functionparse
()
src/syntax/paragraph.rs:56
Functionparse
()
src/syntax/headline.rs:238
Functionparse
()
src/syntax/rule.rs:35
Functionparse
()
src/syntax/clock.rs:63
Functionparse
()
src/syntax/keyword.rs:153
Functionparse
()
src/syntax/inline_src.rs:51
Functionparse
()
src/syntax/line_break.rs:25
Functionparse
()
src/syntax/list.rs:296
Methodparse
(input: &str)
wasm/src/lib.rs:18
Methodparse
Parses input with current config
src/config.rs:52
Functionparse_org_table
()
src/syntax/table.rs:144
Functionparse_table_el
()
src/syntax/table.rs:240
Functionplanning_node
(input: Input)
src/syntax/planning.rs:13
Functionplanning_node_base
(input: Input)
src/syntax/planning.rs:18
Methodplot
(&self)
src/ast/generated.rs:154
Functionpositions
()
src/syntax/element.rs:166
Functionpositions
()
src/syntax/object.rs:267
Methodpost_blank
(&self)
src/ast/generated.rs:104
Functionprase
()
src/syntax/planning.rs:62
Methodpre_blank
(&self)
src/ast/generated.rs:66
Methodpriority
Returns priority text ```rust use orgize::{Org, ast::Headline}; let hdl = Org::parse("* [#A]").first_node::<Headline>().unwrap(); assert_eq!(hdl.pri
src/ast/headline.rs:234
Methodproperties
Returns top-level properties drawer ```rust use orgize::{Org, ast::Document}; let org = Org::parse(r#":PROPERTIES: :ID: 20220718T085035.042592
src/ast/document.rs:73
Methodproperties
(&self)
src/ast/generated.rs:206
Functionproperty_drawer_node
(input: Input)
src/syntax/drawer.rs:147
Functionproperty_drawer_node_base
(input: Input)
src/syntax/drawer.rs:87
Methodpush_str
(&mut self, s: impl AsRef<str>)
src/export/markdown.rs:18
Methodr#continue
Continues traversal
src/export/traverse.rs:36
Methodraw
Raw text of this element
src/ast/cloze.rs:44
Methodraw
Raw text of this element
src/ast/generated.rs:51
Methodrender
Render syntax node to markdown string ```rust use orgize::{Org, ast::Bold, export::MarkdownExport, rowan::ast::AstNode}; let org = Org::parse("* /he
src/export/markdown.rs:33
Methodrender
Render syntax node to html string ```rust use orgize::{Org, ast::Bold, export::HtmlExport, rowan::ast::AstNode}; let org = Org::parse("* /hello/ *wo
src/export/html.rs:88
Functionrepeater_or_delay
( input: Input, )
src/syntax/timestamp.rs:104
Methodrepeater_type
```rust use orgize::{Org, ast::{Timestamp, RepeaterType}}; let t = Org::parse("[2000-01-01 +1w]").first_node::<Timestamp>().unwrap(); assert_eq!(t.re
src/ast/timestamp.rs:97
Methodrepeater_unit
```rust use orgize::{Org, ast::{Timestamp, TimeUnit}}; let t = Org::parse("[2000-01-01 +1w]").first_node::<Timestamp>().unwrap(); assert_eq!(t.repeat
src/ast/timestamp.rs:125
Methodrepeater_value
```rust use orgize::{Org, ast::Timestamp}; let t = Org::parse("[2000-01-01 +1w]").first_node::<Timestamp>().unwrap(); assert_eq!(t.repeater_value(),
src/ast/timestamp.rs:111
Functionreplace
()
src/replace.rs:202
Methodresults
(&self)
src/ast/generated.rs:157
Methodscheduled
Returns this headline's scheduled timestamp, or `None` if not set.
src/ast/headline.rs:188
Methodscheduled
Returns scheduled timestamp ```rust use orgize::{ast::Planning, Org}; let s = Org::parse("* a\nSCHEDULED: <2019-04-08 Mon>") .first_node::<Planning>
src/ast/planning.rs:40
Functionsection_and_headline
()
tests/html.rs:23
Functionsection_node
(input: Input)
src/syntax/headline.rs:109
Methodslice_index
(&self, count: usize)
src/syntax/input.rs:144
Functionsnippet
()
tests/html.rs:71
Functionsource_block_switches
(input: Input)
src/syntax/block.rs:116
Methodsplit_at_position
(&self, predicate: P)
src/syntax/input.rs:166
Methodsplit_at_position1
( &self, predicate: P, e: ErrorKind, )
src/syntax/input.rs:179
Methodsplit_at_position1_complete
( &self, predicate: P, e: ErrorKind, )
src/syntax/input.rs:218
Methodsplit_at_position_complete
( &self, predicate: P, )
src/syntax/input.rs:199
Methodstandard
(input: Input)
src/syntax/object.rs:32
Methodstart
Beginning position of this element
src/ast/cloze.rs:29
Methodstart
Beginning position of this element
src/ast/generated.rs:39
Methodstop
Stops traversal completely
src/export/traverse.rs:24
Methodswitches
```rust use orgize::{Org, ast::SourceBlock}; let block = Org::parse("#+begin_src emacs-lisp -n 20\n#+end_src").first_node::<SourceBlock>().unwrap();
src/ast/block.rs:43
Methodsyntax
(&self)
wasm/src/lib.rs:32
Methodsyntax
(&self)
src/ast/cloze.rs:22
Methodsyntax
(&self)
src/ast/generated.rs:33
Functiontable
()
tests/html.rs:103
Functiontable_el_node_base
(input: Input)
src/syntax/table.rs:96
Methodtake
(&self, count: usize)
src/syntax/input.rs:151
Methodtblfm
Formulas associated to the table ```rust use orgize::{Org, ast::OrgTable}; let table = Org::parse("| a |").first_node::<OrgTable>().unwrap(); assert
src/ast/table.rs:71
Functiontemplate0
(input: Input)
src/syntax/subscript_superscript.rs:56
Functiontemplate1
\NAME[CONTENTS1] \NAME{CONTENTS1}
src/syntax/latex_fragment.rs:30
Functiontemplate1
\NAME POST or // \NAME{}
src/syntax/entity.rs:24
Functiontemplate2
(input: Input)
src/syntax/subscript_superscript.rs:72
Functiontemplate2
\(CONTENTS\)
src/syntax/latex_fragment.rs:54
Functiontemplate2
\_SPACES
src/syntax/entity.rs:56
Functiontemplate3
\[CONTENTS\]
src/syntax/latex_fragment.rs:72
← previousnext →301–400 of 431, ranked by callers