Skip to content
Closed
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
170 changes: 45 additions & 125 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,136 +1,56 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
**/node_modules
/.pnp
.pnp.js
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
package-lock.json

# testing
/coverage
/test-results/
/playwright-report/
/playwright/.cache/

# production
/build
/dist
/temp

# misc
.DS_Store

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache
playwright/vendor/*
!playwright/vendor/.gitkeep

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

### Node Patch ###
# Serverless Webpack directories
.webpack/
# production
**/dist
**/build/**

# Optional stylelint cache
# editors
.vscode
.idea

# SvelteKit build / generate output
.svelte-kit
**/styled-system
vite.config.js.timestamp-*

# End of https://www.toptal.com/developers/gitignore/api/macos,node
.turbo
.nyc_output
Empty file added .hugo_build.lock
Empty file.
19 changes: 0 additions & 19 deletions README.md

This file was deleted.

61 changes: 0 additions & 61 deletions build.js

This file was deleted.

9 changes: 9 additions & 0 deletions config/_default/hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
baseURL = '/'
publishDir = "temp"
defaultContentLanguage = "en"
title = "atomone"
enableEmoji = true
enableGitInfo = true
enableRobotsTXT = true
summaryLength = 10
uglyURLs = false
11 changes: 11 additions & 0 deletions config/_default/languages.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[en]
weight = 1
contentDir = "content/english"
languageName = "English"
[en.params]
slogan = ""
description = ""
siteTitle = ""
siteDescription = ""
twitter = "https://x.com/_atomone"
github = "https://github.com/atomone-hub"
24 changes: 24 additions & 0 deletions config/_default/markup.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[goldmark]
[goldmark.renderer]
unsafe = true
[goldmark.parser]
[goldmark.parser.attribute]
block = true
title = true

[tableOfContents]
startLevel = 2
endLevel = 5
ordered = false

[highlight]
lineNos = false
anchorLineNos = false
codeFences = true
guessSyntax = true
lineAnchors = ""
lineNoStart = 1
lineNumbersInTable = true
noClasses = false
noHl = false
tabWidth = 4
Loading