I started to build this personal website yesterday.
Support
LaTeX test:
Though I'm quite satisfied showing my work on GitHub, it turns out that I have much more want to show. For example, GitHub is extremely unfriendly to show .pdf
files since the internal link (we call it hyperlink for those geeks) doesn't work. This kind
of problem arises quite often. Besides, my only hobby these days is photographing, and as you may already know, no one will show their photos on GitHub!
Apart from all these, since I use a LOT (yup, I'm one of those Freaks), and the only way I know how to render formula on GitHub is ugly, and it can only render fixed color texts, hence this makes me made my mind eventually. For example, we can easily print out some beautiful formula like
which is just a simple commutative diagram for Seifert–Van Kampen theorem, or like
for , which is the statement of Lebesgue Differentiation Theorem.
Gist Support
{
"openapi": "3.0.2",
"info": {
"title": "test",
"description": "test",
"version": "0.1.0"
},
"paths": {
"/": {
"get": {
"summary": "test",
"operationId": "test",
"parameters": [
{
"required": false,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/ArchiveType"
}
],
"default": "zip"
},
"name": "archiveType",
"in": "query"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"ArchiveType": {
"title": "ArchiveType",
"enum": [
"zip",
"tar",
"unknown"
],
"type": "string",
"description": "An enumeration."
}
}
}
}