ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,691
- Points
- 823
Reputation:
A bit of a generic ask, but does XenForo have a native way to prase BB code upon rendering?
I'm working on a custom BBCode add-on and have a similar structure to the BBCode used in a table. For example, here is the structure of a table:
Code:
Specifically, I see the following gets added into $tag['children']
Code:
Read more
Continue reading...
I'm working on a custom BBCode add-on and have a similar structure to the BBCode used in a table. For example, here is the structure of a table:
Code:
Code:
[TABLE]
[TR]
[TH]Header 1[/TH]
[TH]Header 2[/TH]
[/TR]
[TR]
[TD]Content 1[/TD]
[TD]Content 2[/TD]
[/TR]
[/TABLE]
Specifically, I see the following gets added into $tag['children']
Code:
Code:
[TR]
[TH]Header 1[/TH]
[TH]Header 2[/TH]
[/TR]
[TR]
[TD]Content 1[/TD
[TD]Content...
Read more
Continue reading...