changing doc format and HTML literals

This commit is contained in:
udo
2026-04-22 01:56:46 +00:00
parent 8223dcc6b3
commit f7b066b374
123 changed files with 1917 additions and 1611 deletions
+9 -8
View File
@@ -6,14 +6,15 @@ base : parent path
child : child path or absolute override
return value : combined path
:desc
Joins two filesystem-style path fragments with a single `/` when needed.
If `child` is empty, `base` is returned. If `child` already starts with `/`, it is returned unchanged. This makes `path_join()` a better fit for app-level path assembly than open-coded string concatenation.
:see
>sys
:related
**PHP:** Manual path composition with `DIRECTORY_SEPARATOR` or helper wrappers around it
**JavaScript / Node.js:** Node `path.join()`
:content
Joins two filesystem-style path fragments with a single `/` when needed.
If `child` is empty, `base` is returned. If `child` already starts with `/`, it is returned unchanged. That makes `path_join()` a better fit for app-level path assembly than open-coded string concatenation.
Related:
- PHP: manual path composition with `DIRECTORY_SEPARATOR` or helper wrappers around it
- JavaScript / Node.js: Node `path.join()`