📄 ppt2html
字号:
#!/bin/sh# This file is part of the KDE project# Copyright (C) 2002,2003 Paul Chitescu <paulc-devel@null.ro># License: Open Source, Use On Your Own Risk## Konqueror/Embedded MS PowerPoint to HTML data filter## Requires: sh, sed, ppthtml (xlhtml)## Usage: in your konq-embedrc file,## [MIME Handlers]# application/vnd.ms-powerpoint,.ppt=|text/html|/path/to/this/file# you shouldn't need to change anything belowcase "$FILTER_URL" infile:/*) ppthtml `echo "$FILTER_URL" | sed 's,^file:,,'` ;;*) tmpf=/tmp/.konqe-dl-$$.ppt cat >$tmpf ppthtml $tmpf rm $tmpf ;;esac
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -