@axiom-lattice/core 2.1.18 → 2.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3951,10 +3951,10 @@ function createLsTool(backend, options) {
3951
3951
  const lines = [];
3952
3952
  for (const info of infos) {
3953
3953
  if (info.is_dir) {
3954
- lines.push(`${info.path} (directory)`);
3954
+ lines.push(`<code>${info.path}</code> (directory)`);
3955
3955
  } else {
3956
3956
  const size = info.size ? ` (${info.size} bytes)` : "";
3957
- lines.push(`${info.path}${size}`);
3957
+ lines.push(`<code>${info.path}</code>${size}`);
3958
3958
  }
3959
3959
  }
3960
3960
  return lines.join("\n");