Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 1.94 KB

style.md

File metadata and controls

68 lines (49 loc) · 1.94 KB
sitemap title description back_link_title
false
Style Visualization
See the various html elements all on one page
Style Visualization

Header 1 code link and code link

Header 2 code link and code link

Header 3 code link and code link

Header 4 code link and code link

Header 5 code link and code link
Header 6 code link and code link

Paragraph with code and link and code link

Plain Code Link Ymark Nmark Arrows
text text text yes no 🡐 🡒 🡑 🡓 « »
  • Bullet list
  • with code
  • and link
  1. Ordered list
  2. with code
  3. and link

paragraph with a <tip/> in it

paragraph with a <todo/> in it

paragraph with a <problem/> in it


Value inside <todo-p/> tag

paragraph between h rules


multiple h rules in a row




C++ Code

UCLASS(DisplayName="Unreal Name")
class UFoo : public UObject
{
    // Test if Github's C++ processor has UE preprocessor support
    UPROPERTY(BlueprintReadWrite, Category="Xist")
    bool bHopeForSuccess = true;

    Foo(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get())
      : Super(ObjectInitializer)
      {}
};