Hi All !
Standard BBcode supports text strike through. [1]
However PHPbb seems to break this standard, and allow only bold, italic and underlined text.
text
text
text
[s]text[/s]
[1] http://en.wikipedia.org/wiki/BBCode
http://www.tizag.com/htmlT/htmlstrikethrough.php
I know it is possible to add via "BBCodes" in Admin Panel -- but only for forums that I administer myself. This won't work for third-party project forum, that I contact with.
This wish is about making this feature standard for all PHPbb forums, just like bold or underline.
-Technologov
[feature-request]:[s]code for text strike through by default
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
-
- Registered User
- Posts: 2
- Joined: Fri Dec 02, 2011 3:05 am
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [feature-request]:[s]code for text strike through by def
I don't think tere is a standard xD
+1, though
+1, though
- imkingdavid
- Registered User
- Posts: 1050
- Joined: Thu Jul 30, 2009 12:06 pm
Re: [feature-request]:[s]code for text strike through by def
As the Wikipedia article says:
It says that they are the "most common", not the "standard". So while I do agree that strikethrough bbcode is very useful for many boards, and I hope that it does eventually get added to the default list, there is no cross-software bbcode standard list.The following are the most common BBCode tags available to most modern message boards, and are displayed here with their HTML equivalents. However, the effect of these tags can be changed substantially, and the effect may not be identical on all sites using BBCode.
Re: [feature-request]:[s]code for text strike through by def
Strikethrough seems pretty useful, I think we can have it in the core package.
- Dragosvr92
- Registered User
- Posts: 624
- Joined: Tue May 31, 2011 12:08 pm
- Location: Romania
- Contact:
Re: [feature-request]:[s]code for text strike through by def
As an html replacement we could use one of this:
Probably you will go with
Code: Select all
<del>STRIKE 1</del>
<s>STRIKE 2</s>
<strike>STRIKE 3</strike>
<strike>
as you've chosen to go with <strong>
instead of <b>
for the bold..Previous user: TheKiller
Avatar on Memberlist 1.0.3
Avatar on Memberlist 1.0.3
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [feature-request]:[s]code for text strike through by def
TheKiller wrote:As an html replacement we could use one of this:Probably you will go withCode: Select all
<del>STRIKE 1</del> <s>STRIKE 2</s> <strike>STRIKE 3</strike>
<strike>
as you've chosen to go with<strong>
instead of<b>
for the bold..
strike
and s
were deprecated a very long time ago. Why would strike
be chosen other the other two, anyway?- canonknipser
- Registered User
- Posts: 71
- Joined: Mon Sep 19, 2011 4:42 am
- Location: Germany
Re: [feature-request]:[s]code for text strike through by def
Its the same forcallumacrae wrote:TheKiller wrote:As an html replacement we could use one of this:Probably you will go withCode: Select all
<del>STRIKE 1</del> <s>STRIKE 2</s> <strike>STRIKE 3</strike>
<strike>
as you've chosen to go with<strong>
instead of<b>
for the bold..strike
ands
were deprecated a very long time ago. Why wouldstrike
be chosen other the other two, anyway?
<u>
, so the better html for underlined text will be <ins>
(for the normal end user it will currently make no difference)Greetings
Frank
phpbb.de support team member - no support via PM or mail
English is not my native language
Extensions and scripts for phpBB
Frank
phpbb.de support team member - no support via PM or mail
English is not my native language
Extensions and scripts for phpBB
- bantu
- 3.0 Release Manager
- Posts: 557
- Joined: Thu Sep 07, 2006 11:22 am
- Location: Karlsruhe, Germany
- Contact:
Re: [feature-request]:[s]code for text strike through by def
I wouldn't want to mess with the current (3.0.x) BBcode engine just for that. Once the new BBcode engine is in place and built-in BBcodes have been converted to user-configurable BBcodes, I see no reason why we should not include the strike BBcode by default. Unfortunately, it looks like the new BBcode engine won't be ready before 3.2-A1. Of course, the board admin should always be able to enable or disable certain BBcodes.