DRIVE API - 转换后的HTML文档中的分页符

时间:2013-11-05 16:08:06

标签: php google-drive-api

我正在尝试在HTML文档之后创建的上传文件上创建分页符。

当我将Drive文档下载为HTML文件时,会使用<hr style="page-break-before:always;display:none;">元素创建分页符。所以我尝试复制它,但在上传时会转换为简单的<hr>

$file = new Google_DriveFile();
$file->setTitle('Procesodecontroldeproducto.html');
$file->setDescription('A test document');
$file->setMimeType( 'text/html');

$createdFile = $service->files->insert($file, array(
    'data' => '<p>This is the first page</p><hr style="page-break-before:always;display:none;"><p>This should be on the second page</p>',
    'mimeType' => 'text/html',
    'convert' => true
));

我的问题是:在将HTML文档转换为驱动器文档时,有没有办法创建分页符?

0 个答案:

没有答案