使用我们的 REST API,Ruby 开发人员可以轻松制作 MD 文档。为此,您需要使用我们的 Ruby Cloud SDK 执行几个步骤:
由于一个空的 MD 文档应该正式包含一个段落,因此当您以编程方式创建一个 MD 文件时,您将获得这样一个基本结构。
请注意,可以立即将内容添加到新创建的 MD 文档中。因此,您将获得的不仅仅是一个空文件,而是一个包含所需内容的 MD 文档。有关如何修改 MD 文档的更多信息,请参阅 'Edit MD' 页面。
如前所述,我们的 Ruby Cloud SDK 允许您以编程方式创建 MD 文档。您可以尝试我们强大的功能并评估如何使用以下 Ruby 示例创建 MD 文档:
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
file_name= 'Output.md'
create_document_request = CreateDocumentRequest.new(file_name: file_name)
@words_api.create_document(create_document_request)
download_document_request = DownloadFileRequest.new(path: file_name)
@words_api.download_file(download_document_request)
使用 RubyGems 托管服务安装 Aspose.Words Cloud SDK for Ruby 。运行 gem install aspose_words_cloud 来安装包。作为替代方案,您可以从 GitHub 手动克隆 Aspose.Words Cloud SDK for Ruby 源代码并在您的项目中使用它。请按照这些 Instructions 快速获取必要的安全凭证并访问我们的 REST API。