@youtyan/code-viewer 0.11.0 → 0.11.2
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/README.md +5 -0
- package/dist/code-viewer.js +567 -283
- package/package.json +3 -1
- package/web/app.js +483 -40
- package/web/style.css +237 -0
package/README.md
CHANGED
|
@@ -183,6 +183,11 @@ visible, and file pages show a preview when the browser can safely render the
|
|
|
183
183
|
file. Unsupported binary files show a clear unavailable state with file
|
|
184
184
|
metadata instead of dumping bytes as text.
|
|
185
185
|
|
|
186
|
+
CSV and TSV files open as a table with all-column search, per-column filters, and
|
|
187
|
+
three-state column sorting (ascending, descending, then source order). The
|
|
188
|
+
visible-row count and reset action stay above the table while original file row
|
|
189
|
+
numbers remain attached to their data after filtering or sorting.
|
|
190
|
+
|
|
186
191
|
Markdown files use a dedicated preview tab. Relative links and images are
|
|
187
192
|
resolved inside the repository, code blocks are highlighted with Shiki, and
|
|
188
193
|
Mermaid diagrams are rendered lazily in the browser (click any diagram to
|