sent_parse 0.2.1

Presentation parsing library based on suckless sent
Documentation
  • Coverage
  • 50%
    4 out of 8 items documented0 out of 5 items with examples
  • Size
  • Source code size: 4.51 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 479.92 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • camdendotlol/sent_parse
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mythmakerseven

sent_parse

This crate takes a string (e.g. from a text file) and parses it into a vector of presentation slides in the style of sent. With this, you can implement display features without worrying about parsing the text.

Each slide is returned as a struct with associated metadata. Currently there is a TextSlide struct and an ImageSlide struct.

For example, your program can read presentation.txt into a string and then provide it to sent_parse. But this library isn't opinionated about the source of its input, so you can use it ways that diverge from the original suckless tool.