Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 92 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,97 @@
<style>
:root {
--theme-color: #0073aa;
--theme-color-dark: #005f8d;
--doc-border: #e5e7eb;
--doc-surface: #f8fafc;
--doc-text-muted: #475569;
}

body {
text-rendering: optimizeLegibility;
}

.app-name-link img,
.sidebar-nav img,
.markdown-section img {
border-radius: 12px;
}

.sidebar {
border-right: 1px solid var(--doc-border);
}

.sidebar ul li a {
font-size: 14px;
}

.markdown-section {
max-width: 960px;
padding-bottom: 64px;
}

.markdown-section blockquote {
border-left: 4px solid var(--theme-color);
background: var(--doc-surface);
padding: 12px 16px;
border-radius: 0 8px 8px 0;
color: var(--doc-text-muted);
}

.markdown-section h1 + p img {
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.markdown-section pre,
.markdown-section code {
border-radius: 8px;
}

.markdown-section pre {
border: 1px solid var(--doc-border);
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.markdown-section table {
display: table;
width: 100%;
border-collapse: collapse;
}

.markdown-section table th,
.markdown-section table td {
border: 1px solid var(--doc-border);
padding: 10px 12px;
}

.markdown-section table th {
background: var(--doc-surface);
}

.markdown-section a.download-btn,
.markdown-section p a[href*='/releases/download/'] {
display: inline-block;
background: var(--theme-color);
color: #fff !important;
padding: 10px 16px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
box-shadow: 0 8px 20px rgba(0, 115, 170, 0.24);
transition:
background 0.2s ease,
transform 0.2s ease;
}

.markdown-section a.download-btn:hover,
.markdown-section p a[href*='/releases/download/']:hover {
background: var(--theme-color-dark);
transform: translateY(-1px);
}

.lang-toggle a {
display: inline-block;
box-shadow: 0 8px 20px rgba(0, 115, 170, 0.24);
}
</style>
</head>
Expand All @@ -35,8 +126,8 @@
subMaxLevel: 2,
search: 'auto',
alias: {
'/.*/_sidebar.md': '/_sidebar.md',
'/ja/.*/_sidebar.md': '/ja/_sidebar.md',
'/.*/_sidebar.md': '/_sidebar.md',
'/': '/README.md',
'/ja/': '/ja/README.md',
'/ja/(.*)': '/ja/$1',
Expand Down
8 changes: 4 additions & 4 deletions docs/ja/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

![Banner](https://github.com/firstelementjp/swift-csv/blob/main/assets/images/swift-csv-banner.jpeg?raw=true)

> ローカライズされた管理 UI、自動バッチ処理、開発者向け拡張性を備えた WordPress 用 CSV インポート/エクスポートプラグイン
> シンプル&直感的に使えるCSVインポート/エクスポート プラグイン for WordPress

[![License](https://img.shields.io/badge/license-GPL--2.0%2B-blue.svg)](legal.md)
[![Version](https://img.shields.io/badge/version-0.9.9-green.svg)](https://github.com/firstelementjp/swift-csv/releases)
[![Version](https://img.shields.io/badge/version-0.9.9.2-green.svg)](https://github.com/firstelementjp/swift-csv/releases)
[![WordPress](https://img.shields.io/badge/WordPress-6.6%2B-blue.svg)](https://wordpress.org/)

Swift CSV は、管理画面から投稿データを CSV 形式でインポート/エクスポートする WordPress プラグインです。
Expand All @@ -29,11 +29,11 @@ Swift CSV は、管理画面から投稿データを CSV 形式でインポー

## 📥 ダウンロード

[Download swift-csv-v0.9.9.zip](https://github.com/firstelementjp/swift-csv/releases/download/v0.9.9/swift-csv-v0.9.9.zip){: .download-btn }
[Download swift-csv-0.9.9.2.zip](https://github.com/firstelementjp/swift-csv/releases/download/v0.9.9.2/swift-csv-0.9.9.2.zip){: .download-btn }

## 🚀 クイックスタート

1. `swift-csv-v0.9.9.zip` をダウンロード
1. `swift-csv-0.9.9.2.zip` をダウンロード
2. WordPress でプラグインをアップロードして有効化
3. **ツール → Swift CSV** を開く
4. まず小さなテストインポート/エクスポートを実行
Expand Down