Markdownでは文書中に画像ファイルを表示することができる。GitHubでReadmeに使うと見栄えがいい。
Markdown記法で書くならこんな感じ。"サンプル"の部分は省略可能。

import * as Untyped from 'tns-core-modules/data/observable' | |
import deprecated from 'deprecated-decorator' // npm install --save-dev deprecated-decorator | |
import { Field } from '@/data/conditional-types' | |
/** | |
* Don't dirty your hands. | |
* You must use this instead of [[Untyped.Observable]]. | |
* | |
* This description is [here](http://aiya000.github.io/posts/2019-07-04-recover-nativescript-type-unsafe-observable.html). | |
*/ |
/* | |
get SSH.NET (BSD License: http://sshnet.codeplex.com/license) | |
with NuGet: | |
>Install-Package SSH.NET -Version 2013.4.7 | |
or just get the dll from here: http://j.mp/sshNet | |
*/ | |
using System; |
using UnityEngine; | |
using UnityEngine.EventSystems; | |
[AddComponentMenu("Event/Controller Input Module")] | |
public class ControllerInputModule : BaseInputModule | |
{ | |
private float m_NextAction; | |
protected ControllerInputModule() | |
{} |