{"id":13340868,"url":"https://github.com/k-kuroguro/vscode-csv2latex","last_synced_at":"2026-02-14T19:32:49.377Z","repository":{"id":107422757,"uuid":"493503228","full_name":"k-kuroguro/vscode-csv2latex","owner":"k-kuroguro","description":"VSCode extension for converting CSV or Excel table to LaTeX tabular.","archived":false,"fork":false,"pushed_at":"2025-02-07T15:37:09.000Z","size":608,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-03T06:38:24.903Z","etag":null,"topics":["csv","excel","latex","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/k-kuroguro.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-18T04:06:13.000Z","updated_at":"2025-02-07T15:37:13.000Z","dependencies_parsed_at":"2025-03-11T19:44:52.975Z","dependency_job_id":null,"html_url":"https://github.com/k-kuroguro/vscode-csv2latex","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":"k-kuroguro/vscode-extension-template","purl":"pkg:github/k-kuroguro/vscode-csv2latex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-kuroguro%2Fvscode-csv2latex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-kuroguro%2Fvscode-csv2latex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-kuroguro%2Fvscode-csv2latex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-kuroguro%2Fvscode-csv2latex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/k-kuroguro","download_url":"https://codeload.github.com/k-kuroguro/vscode-csv2latex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/k-kuroguro%2Fvscode-csv2latex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29453439,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","excel","latex","vscode","vscode-extension"],"created_at":"2024-07-29T19:24:30.088Z","updated_at":"2026-02-14T19:32:49.357Z","avatar_url":"https://github.com/k-kuroguro.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CSV2LaTeX\n\n[![Marketplace Version](https://vsmarketplacebadge.apphb.com/version-short/k-kuroguro.csv2latex.svg)](https://marketplace.visualstudio.com/items?itemName=k-kuroguro.csv2latex)\n[![CI](https://github.com/k-kuroguro/vscode-csv2latex/actions/workflows/main.yaml/badge.svg)](https://github.com/k-kuroguro/vscode-csv2latex/actions/workflows/main.yaml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg alt=\"vscode-csv2latex\" src=\"./resources/icon_500.png\" width=200\u003e\n\u003c/div\u003e\n\n---\n\nVSCode extension for converting CSV or Excel table to LaTeX tabular.\n\n![Demo](./resources/demo.gif)\n\n# How to use\n\n1. Copy CSV or Excel table.\n2. Execute command `CSV2LaTeX: Paste As Tabular From CSV` or `Excel` via command palette or context menu.\n\n# Available Commands\n\n - `CSV2LaTeX: Paste As Tabular From CSV`\n - `CSV2LaTeX: Paste As Tabular From Excel`\n - `CSV2LaTeX: Enable Pasting Body Only`\n - `CSV2LaTeX: Disable Pasting Body Only`\n\n# Available Config\n\n## pasteBodyOnly\n\nThis controls whether pasting body only.\nYou can enable or disable not only via `settings.json` but also via command `CSV2LaTeX: Enable Pasting Body Only` or `CSV2LaTeX: Disable Pasting Body Only`.\n\nTrue\n```tex\nindex   \u0026 x    \u0026 y    \u0026 z   \\\\\n1       \u0026 10.1 \u0026 23.4 \u0026 3.2 \\\\\n2       \u0026 10.3 \u0026 23.7 \u0026 3.3 \\\\\n3       \u0026 10.4 \u0026 23.8 \u0026 3.1 \\\\\n4       \u0026 10.0 \u0026 23.6 \u0026 3.3 \\\\\n5       \u0026 10.2 \u0026 23.6 \u0026 3.4 \\\\\naverage \u0026 10.2 \u0026 23.6 \u0026 3.3 \\\\\n```\n\nFalse\n```tex\n\\begin{table}\n   \\begin{tabular}{llll}\n      index   \u0026 x    \u0026 y    \u0026 z   \\\\\n      1       \u0026 10.1 \u0026 23.4 \u0026 3.2 \\\\\n      2       \u0026 10.3 \u0026 23.7 \u0026 3.3 \\\\\n      3       \u0026 10.4 \u0026 23.8 \u0026 3.1 \\\\\n      4       \u0026 10.0 \u0026 23.6 \u0026 3.3 \\\\\n      5       \u0026 10.2 \u0026 23.6 \u0026 3.4 \\\\\n      average \u0026 10.2 \u0026 23.6 \u0026 3.3 \\\\\n   \\end{tabular}\n\\end{table}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk-kuroguro%2Fvscode-csv2latex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fk-kuroguro%2Fvscode-csv2latex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fk-kuroguro%2Fvscode-csv2latex/lists"}