API経由でRを使用してMechanicalTurkHitを作成しようとしています。基になるhtmlファイルを使用してHITを作成したいので、コードでGenerateHTMLQuestionコマンドを使用します。私が理解している限り(私は初心者です)、このコマンドはhtmlファイルをXMLファイルに変換します。残念ながら、このコマンドは常に次のエラーを引き起こします。
エラー:1:ドキュメントの最初でのみ許可されるXML宣言2:ドキュメントの最後で追加のコンテンツ
HTMLコードは次のとおりです。
<h3>Find the Website Address for this Retailer</h3>
<ul>
<li>For this retailer below, enter the website address for the official website of the retailer</li>
<li>Include the full address, e.g. http://www.thecheesecakefactory.com</li>
<li>Do not include URLs to city guides and listings like Citysearch.</li>
</ul>
</div>
<p>Restaurant Name: <b>Teststrasse</b></p>
<p>Address: <b>1</b></p>
<p>Phone Number: <b>651351069</b></p>
<p>Website Address:</p>
<p><input type="text" name="Q1Url" id="Q1Url" size="100" /></p>
<p><style type="text/css">
<!--
.highlight-box { border:solid 0px #98BE10; background:#FCF9CE; color:#222222; padding:4px; text-align:left; font-size: smaller;}
-->
</style></p>
助けていただければ幸いです。
アレックス