Files
fil/docs/snippets/ruby/getting-started/hello_world.md

8 lines
154 B
Markdown
Raw Normal View History

2026-06-01 23:40:55 +02:00
```ruby title="Ruby"
require 'kreuzberg'
result = Kreuzberg.extract_file_sync('document.pdf')
puts "Extracted content:"
puts result.content[0...200]
```