diff options
| author | A Farzat <a@farzat.xyz> | 2026-06-10 20:04:12 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-06-10 20:04:12 +0300 |
| commit | f11361ee359c1eaccc36559a2fa5b1b98da10ba8 (patch) | |
| tree | efda27736f85f233cd348933ce67eab8b8c2a777 /src/util/mod.rs | |
| parent | 4a35607263f87d10fd196f9ee4260040bbdc54d9 (diff) | |
| download | repo2markdown-f11361ee359c1eaccc36559a2fa5b1b98da10ba8.tar.gz repo2markdown-f11361ee359c1eaccc36559a2fa5b1b98da10ba8.zip | |
Move outer_backticks to a util module
This is because it shall be used by other functions later on.
It was made more generic by accepting raw bytes instead of strictly
UTF-8 strings. This allows future functions to call it without having to
convert the contents to UTF-8 strings first.
Diffstat (limited to 'src/util/mod.rs')
| -rw-r--r-- | src/util/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/mod.rs b/src/util/mod.rs index 5595a45..24ba6fc 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -1,2 +1,3 @@ +pub mod fence; pub mod language; pub mod path_display; |
