Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
このトピックでは、Aspose.Words を使用して Markdown 機能を実装する方法について説明します。 Markdown は、HTML に簡単に変換できるプレーン テキストをフォーマットする簡単な方法です。 Aspose.Words は次の Markdown 機能をサポートしています。
Markdown 機能の実装は、Aspose.Words API の CommonMark 仕様にほとんど準拠しており、すべての機能は対応するスタイルまたは直接書式設定として表されます。つまり、
このセクションでは、以下のような強調を使用して markdown ドキュメントを作成する方法を説明します。
Markdown treats asterisks (*) and underscores (_) as indicators of emphasis.
You can write **bold** or *italic* text.
You can also write ***BoldItalic*** text.
次のコード スニペットを使用して、上記の markdown ドキュメントを作成できます。
このセクションでは、以下のような見出しを持つ markdown ドキュメントを作成する方法を説明します。
The following produces headings:
# Heading1
## Heading2
### Heading3
#### Heading4
##### Heading5
###### Heading6
# **Bold Heading1**
次のコード スニペットを使用して、上記の markdown ドキュメントを作成できます。
このセクションでは、以下に示すようにブロック引用符を含む markdown ドキュメントを作成する方法を説明します。
We support blockquotes in Markdown:
>*Lorem*
>*ipsum*
>The quotes can be of any level and can be nested:
>>>Quote level 3
>>>
>>>>Nested quote level 4
>
>*Back to first level*
>### Headings are allowed inside Quotes
>
次のコード スニペットを使用して、上記の markdown ドキュメントを作成できます。
このセクションでは、以下に示す水平罫線を使用して markdown ドキュメントを作成する方法を説明します。
We support Horizontal rules (Thematic breaks) in Markdown:
-----
次のコード スニペットを使用して、上記の markdown ドキュメントを作成できます。
次のコード スニペットは、markdown ドキュメントを読み取る方法を示しています。
Aspose.Words API は、ドキュメントを Markdown 形式で保存する際に追加のオプションを指定するための MarkdownSaveOptions クラスを提供します。
次のコード例は、さまざまな Markdown 保存オプションを指定する方法を示しています。
Aspose.Words API は、Markdown ドキュメントにエクスポートする際にテーブル内のコンテンツを整列させるための整列方向を定義する TableContentAlignment 列挙を提供します。次のコード例は、テーブル内のコンテンツを整列する方法を示しています。
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.