mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
100 lines
4.0 KiB
TOML
100 lines
4.0 KiB
TOML
title = "Writing an OS in Rust"
|
|
base_url = "https://os.phil-opp.com"
|
|
description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code."
|
|
|
|
highlight_code = true
|
|
highlight_theme = "visual-studio-dark"
|
|
generate_feed = true
|
|
feed_filename = "rss.xml"
|
|
|
|
languages = [
|
|
{ code = "zh-CN" }, # Chinese (simplified)
|
|
{ code = "zh-TW" }, # Chinese (traditional)
|
|
{ code = "ja" }, # Japanese
|
|
{ code = "fa" }, # Persian
|
|
]
|
|
|
|
ignored_content = ["*/README.md"]
|
|
|
|
[link_checker]
|
|
skip_prefixes = [
|
|
"https://crates.io/crates", # see https://github.com/rust-lang/crates.io/issues/788
|
|
"https://www.amd.com/system/files/TechDocs/", # seems to have problems with PDFs
|
|
"https://developer.apple.com/library/archive/qa/qa1118/_index.html", # results in a 401 (I don't know why)
|
|
"https://github.com", # rate limiting often leads to "Error 429 Too Many Requests"
|
|
"https://www.linkedin.com/", # seems to send invalid HTTP status codes
|
|
]
|
|
skip_anchor_prefixes = [
|
|
"https://github.com/", # see https://github.com/getzola/zola/issues/805
|
|
"https://docs.rs/x86_64/0.1.2/src/", # source code highlight
|
|
]
|
|
|
|
[extra]
|
|
subtitle = "Philipp Oppermann's blog"
|
|
author = { name = "Philipp Oppermann" }
|
|
|
|
[translations.en]
|
|
lang_name = "English"
|
|
toc = "Table Of Contents"
|
|
all_posts = "« All Posts"
|
|
support_me = "Support Me"
|
|
comments = "Comments"
|
|
comments_notice = "Please leave your comments in English if possible."
|
|
other_languages = "Other Languages"
|
|
about_me = "About Me"
|
|
about_me_text_1 = "I'm a Rust freelancer with a master's degree in computer science. I love systems programming, open source software, and new challenges."
|
|
readmore = "read more »"
|
|
not_translated = "(This post is not translated yet.)"
|
|
|
|
[translations.zh-CN]
|
|
lang_name = "Chinese (simplified)"
|
|
toc = "Table Of Contents"
|
|
all_posts = "« All Posts"
|
|
support_me = "Support Me"
|
|
comments = "Comments"
|
|
comments_notice = "Please leave your comments in English if possible."
|
|
other_languages = "Other Languages"
|
|
about_me = "About Me"
|
|
about_me_text_1 = "I'm a Rust freelancer with a master's degree in computer science. I love systems programming, open source software, and new challenges."
|
|
readmore = "read more »"
|
|
not_translated = "(This post is not translated yet.)"
|
|
|
|
[translations.zh-TW]
|
|
lang_name = "Chinese (traditional)"
|
|
toc = "Table Of Contents"
|
|
all_posts = "« All Posts"
|
|
support_me = "Support Me"
|
|
comments = "Comments"
|
|
comments_notice = "Please leave your comments in English if possible."
|
|
other_languages = "Other Languages"
|
|
about_me = "About Me"
|
|
about_me_text_1 = "I'm a Rust freelancer with a master's degree in computer science. I love systems programming, open source software, and new challenges."
|
|
readmore = "read more »"
|
|
not_translated = "(This post is not translated yet.)"
|
|
|
|
[translations.ja]
|
|
lang_name = "Japanese"
|
|
toc = "Table Of Contents"
|
|
all_posts = "« All Posts"
|
|
support_me = "Support Me"
|
|
comments = "Comments"
|
|
comments_notice = "Please leave your comments in English if possible."
|
|
other_languages = "Other Languages"
|
|
about_me = "About Me"
|
|
about_me_text_1 = "I'm a Rust freelancer with a master's degree in computer science. I love systems programming, open source software, and new challenges."
|
|
readmore = "read more »"
|
|
not_translated = "(This post is not translated yet.)"
|
|
|
|
[translations.fa]
|
|
lang_name = "Persian"
|
|
toc = "فهرست مطالب"
|
|
all_posts = "« همه پستها"
|
|
support_me = "مرا پشتیبانی کنید"
|
|
comments = "نظرات"
|
|
comments_notice = "لطفا نظرات خود را در صورت امکان به انگلیسی بنویسید."
|
|
other_languages = "زبان های دیگر"
|
|
about_me = "درباره من"
|
|
about_me_text_1 = "من یک فریلنسر Rust با مدرک ارشد علوم کامپیوتر هستم. من عاشق برنامه نویسی سیستمی، نرم افزار متن باز و چالش های جدید هستم."
|
|
readmore = "ادامهمطلب»"
|
|
not_translated = "(این پست هنوز ترجمه نشده است.)"
|