We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@sidebar
@added_by
@ignore
member[:souce]
(Integer) -> 0
member[:required_positionals]
Integer
Integer.html
def m: (Integer)
def m: (Integer a)
def m(a);...;end
def m(a=0)
def m: (?Integer a)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
機能開発
@sidebar
@added_by
@ignore
という注釈がmd生成に影響を与えているので、そことの整合性を設計する必要あり #7member[:souce]
((Integer) -> 0
みたいな素のテキスト)を生成ドキュメントにそのまんま使用しているが、member[:required_positionals]
以下の情報(現在は未使用)を組み合わせてドキュメントを生成するようにしたい。これができると、たとえばInteger
という型名からInteger.html
へリンクできるのではないかと思っている。type_aliasも同様にリンクしたい #10@ignore
が注釈されていたら載せない #12Jekyll関連の問題
比較的単純(?)な作業
def m: (Integer)
となっているなら、def m: (Integer a)
のように引数の変数名を書き加えたい(rbファイルのほうにdef m(a);...;end
のように書いてあるから、それを見て補う)。変数名が不適切だったら、ついでに直しちゃってもよい #4検討したいこと
def m(a=0)
となっている場合に、rgsではdef m: (?Integer a)
となっていて、aのデフォルト値が0であることがわからない。デフォルト値をドキュメント化したいので、いいやり方がないか考えたい(コメントに書くとかでもいい思うが、rb実装との二重管理になってしまうから、rb実装ファイルから自動的に持ってこられるとありがたい) #14将来そのうちやりたいかも
The text was updated successfully, but these errors were encountered: