My First Blog Post

全ての記法を試す

TODO:

h1

this is a text after h1aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaa

h2

aiueo and strong text

h3

aiueo and pre text

h4

aiueo

h5

aiueo


文頭に>を置くことで引用になります。だれだれが言ってた

Strong Quote

First element

The contents of the first element

Second element

The contents of the second element

Third element

The contents of the third element

疲れたので速足で一覧表を作るぞ codes

use crate::{get_composition_context, ComposedArea};

/// Allows you to implement `aware` for egui entities so hframe can know about
/// their existence when applying compositions.
pub trait Aware {
    /// Let hframe know about the existence of this entity.
    ///
    /// You must call this in anything from the egui world that can overlap
    /// with HTML content (like normal egui windows).
    fn aware(self) -> Self;
}

impl<R> Aware for Option<egui::InnerResponse<R>> {
    fn aware(self) -> Self {
        let inner_response = self?;
        let egui_ctx = &inner_response.response.ctx;
        let cmp = get_composition_context(egui_ctx);
        let mut cmp = cmp.lock().unwrap();

        cmp.put_composed_area(ComposedArea {
            id: inner_response.response.layer_id.id,
            rect: inner_response.response.rect,
            html: None,
        });

        Some(inner_response)
    }
}
FeatureHyperReact
ArchitectureStandards-firstComponent-based
StylingDecoupled CSSCSS-in-JS/Tailwind
Bundle SizeMinimal (3.9KB)Large (91.3KB+)
Design SystemExternal & SwappableTightly Coupled
Learning CurveWeb StandardsFramework Specific
MaintainabilityHighComplex

#1 現在はブログのみが乗るようになっているが、Zennやnoteの新着記事も乗るようにしたい

#2 Home: Blog Tagからフィルタページに飛べるようにする

#3 Blog: Tagによるフィルターページを作成する

#4 Blog: 検索ページを作成する

Note

ここに驚くべき事実!

非常に強調

忘れた!

参照もできる1

あいうえお

用語の定義ができるらしい


tabs

タブ

One element

The contents of the first element

Two element

The contents of the second element

Three element

The contents of the third element