mirror of
https://github.com/CoolnsX/my-website.git
synced 2025-12-19 23:05:18 +05:30
55 lines
1.8 KiB
TOML
55 lines
1.8 KiB
TOML
# The URL the site will be built for
|
||
base_url = "https://coolans.dev"
|
||
|
||
# The site title and description; used in feeds by default.
|
||
title = "Coolans Blogs"
|
||
|
||
# Whether to automatically compile all Sass files in the sass directory
|
||
compile_sass = false
|
||
|
||
# When set to "true", the generated HTML files are minified.
|
||
minify_html = true
|
||
|
||
# When set to "true", a search index is built from the pages and section
|
||
# content for `default_language`.
|
||
build_search_index = true
|
||
|
||
# When set to "true", a feed is automatically generated.
|
||
generate_feeds = true
|
||
feed_filenames = ['rss.xml']
|
||
|
||
# The default author for pages
|
||
author = "Coolans"
|
||
|
||
[markdown]
|
||
highlight_code = true
|
||
|
||
# Whether external links are to be opened in a new tab
|
||
# If this is true, a `rel="noopener"` will always automatically be added for security reasons
|
||
external_links_target_blank = true
|
||
|
||
# Whether to set decoding="async" and loading="lazy" for all images
|
||
# When turned on, the alt text must be plain text.
|
||
# For example, `` is ok but `` isn’t ok
|
||
lazy_async_image = true
|
||
|
||
# When set to "true", emoji aliases translated to their corresponding
|
||
# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
|
||
render_emoji = true
|
||
|
||
[search]
|
||
# Whether to include the title of the page/section in the index
|
||
include_title = true
|
||
# Whether to include the description of the page/section in the index
|
||
include_description = true
|
||
# Whether to include the RFC3339 datetime of the page in the search index
|
||
include_date = true
|
||
# Whether to include the rendered content of the page/section in the index
|
||
include_content = false
|
||
# At which code point to truncate the content to. Useful if you have a lot of pages and the index would
|
||
# become too big to load on the site. Defaults to not being set.
|
||
# truncate_content_length = 100
|
||
|
||
[extra]
|
||
# Put all your custom variables here
|