tritext 0.16.3

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global tritext --version 0.16.3
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local tritext --version 0.16.3
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=tritext&version=0.16.3
                    
nuke :add-package tritext --version 0.16.3
                    

Reads a pdf and uses IText to extract the text.
This program is part of the Trash toolkit.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.23.26 2,717 8/17/2025
0.23.25 240 8/9/2025
0.23.24 2,619 7/15/2025
0.23.23 1,021 7/6/2025
0.23.22 608 6/27/2025
0.23.21 1,792 6/6/2025
0.23.20 350 6/4/2025
0.23.19 342 6/4/2025
0.23.18 1,280 5/13/2025
0.23.17 4,256 3/7/2025
0.23.16 543 3/4/2025
0.23.15 172 2/25/2025
0.23.14 700 2/9/2025
0.23.13 439 1/19/2025
0.23.12 461 1/16/2025
0.23.11 2,656 12/18/2024
0.23.10 172 12/12/2024
0.23.9 161 11/29/2024
0.23.8 208 11/1/2024
0.23.7 4,292 10/9/2024
0.23.6 787 9/21/2024
0.23.5 192 9/15/2024
0.23.4 198 9/7/2024
0.23.3 194 8/15/2024
0.23.2 197 6/28/2024
0.23.1 189 6/22/2024
0.18.1 621 11/11/2022
0.18.0 504 11/7/2022
0.17.0 565 9/11/2022
0.16.5 607 7/29/2022
0.16.4 608 6/13/2022
0.16.3 619 5/7/2022
0.16.2 589 5/6/2022
0.16.1 604 5/5/2022
0.16.0 674 4/13/2022
0.15.1 618 4/4/2022
0.15.0 563 3/20/2022
0.14.3 662 2/27/2022
0.14.2 637 2/18/2022

# trdot
Reads a tree from stdin and prints the tree as a Dot graph.
# Usage
trdot
# Details
`trdot` reads parse tree data via stdin and outputs
a Dot graph specification. The stdout can be redirected to
save the output to a file. Or, you can copy the output and
use an online Dot graph visualizer to make a plot.
Any parse tree data can be converted to Dot, include a
parse of a grammar, the parse tree of a simple expression grammar,
or a list of parse tree nodes obtained via
[trxgrep](https://github.com/kaby76/Domemtech.Trash/tree/main/trxgrep).
# Examples
Consider the Expression grammar, obtained via
mkdir foo; cd foo; trgen; cd Generated; dotnet build
Let's parse the expression "1+2" and print the parse tree as a Dot graph:
trparse -i "1+2" | trdot
The output will be:
digraph G {
Node18643596 [label="file_"];
Node33574638 [label="expression"];
Node33736294 [label="expression"];
Node35191196 [label="atom"];
Node48285313 [label="scientific"];
Node31914638 [label="1"];
Node18796293 [label="+"];
Node34948909 [label="expression"];
Node46104728 [label="atom"];
Node12289376 [label="scientific"];
Node43495525 [label="2"];
Node55915408 [label="EOF"];
Node18643596 -> Node33574638;
Node18643596 -> Node55915408;
Node33574638 -> Node33736294;
Node33574638 -> Node18796293;
Node33574638 -> Node34948909;
Node34948909 -> Node46104728;
Node46104728 -> Node12289376;
Node12289376 -> Node43495525;
Node33736294 -> Node35191196;
Node35191196 -> Node48285313;
Node48285313 -> Node31914638;
}
# Current version
0.16.3 -- Fix to trgen and Cpp target.