Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This is a Jekyll-based blog using the Chirpy theme for technical writing and daily logs. The site is hosted on GitHub Pages and focuses on documenting experiences and learnings in Korean.
# Build the entire project (CSS + JS) npm run build # Build CSS only (with PurgeCSS) npm run build:css # Build JavaScript for production npm run build:js # Watch JavaScript files during development npm run watch:js # Lint SCSS files npm run lint:scss # Fix SCSS linting issues npm run lint:fix:scss # Run tests (currently just SCSS linting) npm run test
# Install Ruby dependencies bundle install # Serve the site locally for development bundle exec jekyll serve # Build the site bundle exec jekyll build # Test the site with HTML Proofer bundle exec htmlproofer _site
_posts/: Blog posts in Markdown format (YYYY-MM-DD-title.md)_layouts/: HTML templates for different page types_includes/: Reusable HTML components_sass/: SCSS stylesheets_javascript/: JavaScript modules and components_data/: YAML configuration files (authors, locales, etc.)_site/: Generated static site (Git ignored)assets/: Static assets (images, CSS, JS)templates/: Post and content templates_javascript/modules/components/_javascript/modules/layouts/_sass/main.scss_sass/addon/_sass/layout/_sass/colors/_data/locales/templates/# Full development setup bundle install && npm install # Start local development server (Jekyll) bundle exec jekyll serve # Watch and build JavaScript during development npm run watch:js # Run all linting npm run test