this repo has no description

add config file for rumdl

kacaii.dev dd478cf7 8d23eb49

verified
+26 -27
+20
.rumdl.toml
··· 1 + [global] 2 + disable = ["MD041", "MD018"] 3 + 4 + exclude = [ 5 + ".git", 6 + ".github", 7 + "node_modules", 8 + "vendor", 9 + "dist", 10 + "build", 11 + 12 + "CHANGELOG.md", 13 + "LICENSE.md", 14 + ] 15 + 16 + respect-gitignore = true 17 + 18 + [MD013] 19 + code-blocks = false # Exclude code blocks from line length check 20 + tables = false # Exclude tables from line length check
+2 -2
atproto-basic-concepts.md
··· 2 2 3 3 ## Identity 4 4 5 - Users have permanent decentralized identifiers ([DIDs](did.md)) for their accounts. 6 - Identities include a reference to the current hosting provider and 5 + Users have permanent decentralized identifiers ([DIDs](/did.md)) for their 6 + accounts. Identities include a reference to the current hosting provider and 7 7 criptographic keys. 8 8 9 9 ```txt
+4 -2
atproto.md
··· 1 + [[source]] 2 + 1 3 > Stands for **Authenticated Transfer Protocol** 2 4 3 5 It creates a standard format for user identity, allowing apps to interoperate ··· 5 7 6 8 ## Resources 7 9 8 - https://atproto.com/guides/overview 9 - https://docs.bsky.app/docs/advanced-guides/atproto 10 + <https://atproto.com/guides/overview> 11 + <https://docs.bsky.app/docs/advanced-guides/atproto>
-23
zig-switching-on-errors.md
··· 1 - [[zig]] 2 - 3 - ```zig 4 - const MyError = error{ Wibble, Wobble }; 5 - 6 - pub fn main() !void { 7 - const lang: Language = .Gleam; 8 - 9 - doWork(lang) catch |e| switch (e) { 10 - error.Wibble => std.debug.print("Error: {t}\n", .{e}), 11 - error.Wobble => std.debug.print("Error: {t}\n", .{e}), 12 - }; 13 - } 14 - ``` 15 - 16 - Alternatively: 17 - 18 - ```zig 19 - doWork(lang) catch |e| switch (e) { 20 - MyError.Wibble => std.debug.print("Error: {t}\n", .{e}), 21 - MyError.Wobble => std.debug.print("Error: {t}\n", .{e}), 22 - }; 23 - ```
zig.md

This is a binary file and will not be displayed.