WIKIPLUS記法
WIKIPLUSのエディター「コードビュー」での記述方法の例をご案内しています。
ファイル貼り付け(Excel,Word,PDF)
コード
&file("filename=excel_sample.xlsx"); &file("filename=word_sample.docx"); &file("filename=pdf_sample.pdf");
出力例
ファイル貼り付け(リンク文字列を指定します)
コード
&file("filename=excel_sample.xlsx"){Excelのサンプル}; &file("filename=word_sample.docx"){Wordのサンプル}; &file("filename=pdf_sample.pdf"){PDFのサンプル};
出力例
ファイル貼り付け(ブラウザでの開き方を指定します)
action=save | ダウンロードリンクを表示します |
action=view | インラインで開きます |
action=open | ブラウザに任せます |
コード
&file("filename=pdf_sample.pdf",action=save){PDFのサンプル};
出力例
コード
&file("filename=pdf_sample.pdf",action=view){PDFのサンプル};
出力例
コード
&file("filename=pdf_sample.pdf",action=open){PDFのサンプル};