マークダウンのパースがどうされるのかを確認するためのページ。
異常がないかを確かめるデバッグ用にも使用します。
# 見出し1
## 見出し2
### 見出し3
#### 見出し4
[アンカーテキスト](/)
- Hello
- Hola
- Bonjour
* Hi
*イタリック*
**太字**
~~打ち消し線~~
`code`
イタリック 太字 打ち消し線 code
~/components/content
ディレクトリにあるコンポーネントはマークダウンで使用できるので、サンプルを表示する。
type='note'
type='important'
type='tip'
type='warning'
type='caution'
::LinkCard{link='https://nuxt.com/'}
::
Nuxt: The Intuitive Vue Framework
https://nuxt.com
- const posts = await this.$content('/blog', { deep: true }).only(['title']).fetch()
+ const { data: posts } = await useAsyncData('posts-list', () => queryContent('/blog').only(['title']).find())
$ cd path/to/app/repository
$ git tag -a ${tag} -m "参照するアプリとそのバージョン" head
$ git push origin ${tag}
FROM ruby:3.2-slim-bookworm
WORKDIR /app
CMD ["/bin/bash"]
DEV_OAUTH_CLIENT_ID='1'
DEV_OAUTH_CLIENT_SECRET='dfas'
name: Publish Release
on:
push:
tags:
- "v*"
jobs:
publish_release:
timeout-minutes: 5
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 4
<div>
<p>hogehoge</p>
</div>
.hogehoge {
font-size: 16px;
font-weight: bold;
.fugafuga {
background-color: blue;
}
}
export default {
name: "hogehoge",
methods: {
echoPiyo() {
return "hogehoge";
},
},
};
export const hogehoge: string = "hogehoge";
export const sum = (a: number): number => {
return a + b;
};
<template>
<p>script setup is great</p>
</template>
<script setup lang="ts">
import { fugafuga } from "imports";
export const fugafuga = ref("fugafuga");
</script>
<style scoped>
.tokaionair {
display: flex;
}
</style>
first,second
1,2
{
"hoge": "hogehge",
"fuga": "fugafuga"
}
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.moduleApps"
>
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:label="@string/app_title"
android:fullBackupContent="false">
<activity
android:name=".MainActivity"
android:launchMode="singleTask"
android:theme="@style/LaunchTheme"
>
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="@string/scheme" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_map_api_key"/>
</application>
<queries>
<package android:name="com.google.android.apps.fitness" />
<intent>
<action android:name="android.intent.action.SEND" />
<data android:mimeType="*/*" />
</intent>
</queries>
</manifest>
import 'module_health/module_health.dart';
class Hogehoge extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Container();
}
}
class Parser < ActiveRecord {
def initialize(policy)
@policy = policy
end
def to_s
@policy.to_s
end
}
struct {
Hoge string `json:fuga`
}
func main() void {
fmt.printfs(Hoge)
}