スキル一覧に戻る
Liam-Deacon

restructured-text

by Liam-Deacon

Computational package for Low Energy Electron Diffraction using ML optimisation algorithms

4🍴 3📅 2026年1月12日
GitHubで見るManusで実行

SKILL.md


name: restructured-text version: 1 description: "Guidelines for writing valid reStructuredText (.rst) in this repo (Sphinx)." scope: "doc/**/*.rst"

reStructuredText (Sphinx) guidelines

Core rules

  • Treat .rst as reStructuredText (not Markdown). Indentation and blank lines are semantic.
  • Prefer Sphinx structure over .. include:: for navigation: use .. toctree:: so each page is a real document.
  • Avoid tabs; use spaces.

Headings

  • Underlines must be at least as long as the title text.
  • Keep heading levels consistent within a file.

Example::

Title
=====

Section
-------

Lists

  • For enumerated/bulleted lists, indent continuation paragraphs under the list item and add a blank line between items when they contain multiple paragraphs.

Example::

1. Item title

   Continuation paragraph (indented).

2. Next item

Inline markup

  • Escape characters that trigger markup when they are literal.

  • Prefer Sphinx roles for semantic markup:

    • Filenames: :file: (e.g. ``:file:`*.inp```).
    • Commands: :command:.
    • Environment variables: :envvar: (define them via .. envvar:: somewhere in the docs).

Common pitfall::

This breaks: CLEED *.res results file

Better::

Use :file:`*.res` results files
  • Labels must use the underscore form: .. _label_name:.

  • Use ``:ref:`label_name``` for internal links.

  • Use explicit links for emails/URLs:

    • mailto: for email links.
    • Full URLs for external links.

Example::

See :ref:`file_formats` or email `support <mailto:someone@example.com>`_.

スコア

総合スコア

65/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です