ThorKit

TOML 미리보기·JSON 변환기

TOML(Tom's Obvious Minimal Language) 텍스트를 검증하고 JSON으로 변환합니다. Rust·Python pyproject 호환.

마지막 업데이트: 2026-05-10

입력

결과

검증
구조 OK (간이 파서)
유효 라인 수
8줄
테이블·키
2개 / 6개
상세
JSON 변환
JSON 변환
{
  "title": "ThorKit",
  "version": "1.0.0",
  "features": {
    "search": true,
    "bookmark": true
  },
  "ads": {
    "adsense": true,
    "adfit": true
  }
}
  • · 본 도구는 핵심 TOML(키-값·테이블·기본 타입)만 지원하는 간이 파서입니다.
  • · 복잡한 inline table·array of tables·datetime·multi-line string은 미지원.
  • · Rust Cargo.toml·Python pyproject.toml·Hugo config·Netlify config 등 기본 구조 검토에 활용.
외부 사이트에 임베드 (iframe 코드 복사)

블로그·기업 사이트에 이 계산기를 그대로 넣으세요. 무료, 회원가입 없음. 광고·헤더·푸터 없는 클린 UI 임베드.

<iframe
  src="https://thorkit.kr/embed/toml-viewer/"
  width="100%"
  height="900"
  frameborder="0"
  style="border: 1px solid #e5e7eb; border-radius: 6px;"
  title="TOML 미리보기·JSON 변환기 — ThorKit"
  loading="lazy"
></iframe>
<script>
  window.addEventListener("message", function(e) {
    if (e.origin !== "https://thorkit.kr") return;
    if (e.data && e.data.type === "thorkit:height") {
      var iframes = document.querySelectorAll('iframe[src*="https://thorkit.kr/embed/"]');
      iframes.forEach(function(f) { f.style.height = e.data.height + "px"; });
    }
  });
</script>
· height 700~1200 권장 (자동 조절 끄면 수동 조절 필요)· loading="lazy"로 페이지 속도 영향 최소

계산 근거

TOML은 "분명하게 의미를 알 수 있는 최소 언어" 철학으로 만든 설정 파일 형식이며, INI보다 풍부하고 YAML보다 명확한 것이 특징입니다.

Rust 생태계(Cargo.toml)에서 표준 사용되며 Python(pyproject.toml)·Hugo·Netlify 등 점차 채택 확대 중입니다.

JSON과 무손실 변환 가능하며 본 도구는 TOML을 JSON으로 변환해 다른 도구에서 처리할 수 있게 합니다.

관련 계산기

태그로 묶인 다른 콘텐츠

계산기·도표·가이드·부업 모두 포함 — 태그 공유도 높은 순

#개발 전체 →
</> 이 계산기를 다른 사이트에 임베드하기

아래 코드를 블로그·뉴스·기업 사이트의 HTML 영역에 붙여넣으면 이 계산기를 그대로 사용할 수 있습니다. 무료, 별도 신청 X.

<iframe
  src="https://thorkit.kr/embed/toml-viewer/"
  width="100%"
  height="900"
  frameborder="0"
  style="border: 1px solid #e5e7eb;"
  title="TOML 미리보기·JSON 변환기 — ThorKit(토르킷)"
  loading="lazy"
></iframe>

임베드 가이드 전체 보기 →