我正在寻找一个简单的在线文本编辑器,它将加载在线文件(CSS)并允许用户进行更改,然后将文件保存到桌面。语法高亮显示会很好,但不是必需的。
我发现Edit Pad这是理想的,除了我需要能够将内容加载到其中。我帮助的大多数用户都需要逐步说明,并且会对颜色和图像网址等css进行微小的更改。拥有这样的编辑器会让我更容易帮助他们(有些人编辑了他们的css文件并将其保存为rtf)。
编辑:我有一个网站(php& jQuery)我可以托管一个程序 - 类似于CKEditor(但我没有看到“将文件保存到桌面”选项)。
答案 0 :(得分:2)
您可以编写一个小的PHP脚本来抓取URL的内容并将其发布到pastebin然后重定向到那里。 此脚本发布到http://pastebin.com/
<?php
/* Get the contents of the url in the query */
$url = $_GET['url'];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
echo curl_error($ch);
$content = curl_exec($ch);
curl_close($ch);
/* Create a Pastebin from the contents */
$action = 'http://pastebin.com/pastebin.php';
$postdata = array(
'format' => 'text',
'paste' => 'Send',
'code2' => urlencode($content)
);
foreach($postdata as $key=>$value) {
$postdata_string .= $key.'='.$value.'&';
}
rtrim($postdata_string,'&');
$ch = curl_init($action);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata_string);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);
// *** Redirect to Pastebin ***
header("Location: ".curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
/*
Make sure that any code below
does not get executed when we redirect.
*/
exit;
?>
答案 1 :(得分:1)
我只会使用谷歌,
使用Google文档,您可以协作更改文件。只需确保使用“将文件下载为文本”进行保存即可。没有语法高亮,语法检查。
您可以自行加载内容并邀请另一方作为编辑。他们根本不用担心加载它。
答案 2 :(得分:1)
你可以尝试一下Bespin:https://bespin.mozilla.com/它仍处于测试阶段,但对于它的新功能并不坏。
答案 3 :(得分:0)