Skip to content

Cloudef/zig-budoux

Repository files navigation

zig-budoux

Budoux for Zig (and C)


License: MIT

Project is tested on zig version 0.13.0-dev.75+5c9eb4081

Example

Zig

const budoux = @import("zig-budoux");
var model = try budoux.init(allocator, .ja);
defer model.deinit(allocator);
var iter = model.iterator("今日は天気です。");
try std.testing.expectEqualSlices(u8, "今日は", iter.next().?);
try std.testing.expectEqualSlices(u8, "天気です。", iter.next().?);

C

#include <budoux.h>
BudouxModel model = budoux_init(budoux_model_ja);
BudouxChunkIterator iter = budoux_iterator_init(model, "今日は天気です。");
BudouxChunk chunk;
chunk = budoux_iterator_next(&iter); // 今日は
chunk = budoux_iterator_next(&iter); // 天気です。
budoux_deinit(model);

Note

zig-budoux does not allocate any strings, thus it won't add any html markup or zero width spaces. However with model.iterator it is simple to construct strings for your needs. To parse html you need to bring your own html parser.

Depend

build.zig.zon

.zig_budoux = .{
  .url = "https://github.com/Cloudef/zig-budoux/archive/{COMMIT}.tar.gz",
  .hash = "{HASH}",
},

build.zig

const zig_budoux = b.dependency("zig_budoux", .{}).module("zig-budoux");
exe.root_module.addImport("zig-budoux", zig_budoux);