mirror of
https://github.com/friendica/friendica
synced 2024-12-21 17:14:54 +01:00
New version of markdown. Playing with stylesheet. Testing line breaks.
This commit is contained in:
parent
064c843119
commit
b6d7777226
3 changed files with 404 additions and 504 deletions
|
@ -8,7 +8,7 @@ require_once('include/html2bbcode.php');
|
||||||
|
|
||||||
// we don't want to support a bbcode specific markdown interpreter
|
// we don't want to support a bbcode specific markdown interpreter
|
||||||
// and the markdown library we have is pretty good, but provides HTML output.
|
// and the markdown library we have is pretty good, but provides HTML output.
|
||||||
// So we'll use that to convert to HTML, then convert the HTML back to bbcode,
|
// So we'll use that to convert to HTML, then convert the HTML back to bbcode,
|
||||||
// and then clean up a few Diaspora specific constructs.
|
// and then clean up a few Diaspora specific constructs.
|
||||||
|
|
||||||
function diaspora2bb($s) {
|
function diaspora2bb($s) {
|
||||||
|
@ -35,17 +35,16 @@ function diaspora2bb($s) {
|
||||||
|
|
||||||
$s = str_replace('#','#',$s);
|
$s = str_replace('#','#',$s);
|
||||||
|
|
||||||
// Again: too many new lines
|
$s = str_replace("\n",'<br />',$s);
|
||||||
//$s = str_replace("\n",'<br />',$s);
|
|
||||||
|
|
||||||
$s = html2bbcode($s);
|
$s = html2bbcode($s);
|
||||||
// $s = str_replace('*','*',$s);
|
// $s = str_replace('*','*',$s);
|
||||||
|
|
||||||
|
|
||||||
$s = preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]',$s);
|
$s = preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]',$s);
|
||||||
$s = preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]',$s);
|
$s = preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]',$s);
|
||||||
$s = preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]',$s);
|
$s = preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]',$s);
|
||||||
$s = preg_replace("/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism",'[vimeo]$1[/vimeo]',$s);
|
$s = preg_replace("/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism",'[vimeo]$1[/vimeo]',$s);
|
||||||
$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2$3$4[/url]',$s);
|
$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2$3$4[/url]',$s);
|
||||||
// remove duplicate adjacent code tags
|
// remove duplicate adjacent code tags
|
||||||
$s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
|
$s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
|
||||||
|
|
884
library/markdown.php
Executable file → Normal file
884
library/markdown.php
Executable file → Normal file
File diff suppressed because it is too large
Load diff
|
@ -122,6 +122,17 @@
|
||||||
.next { background-position: -110px -60px;}
|
.next { background-position: -110px -60px;}
|
||||||
.tagged { background-position: -130px -60px;}
|
.tagged { background-position: -130px -60px;}
|
||||||
|
|
||||||
|
.attachtype {
|
||||||
|
display: block; width: 20px; height: 23px;
|
||||||
|
background-image: url('../../../images/content-types.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
.type-video { background-position: 0px 0px; }
|
||||||
|
.type-image { background-position: -20px 0px; }
|
||||||
|
.type-audio { background-position: -40px 0px; }
|
||||||
|
.type-text { background-position: -60px 0px; }
|
||||||
|
.type-unkn { background-position: -80px 0px; }
|
||||||
|
|
||||||
.icon.drop, .icon.drophide {
|
.icon.drop, .icon.drophide {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue