Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
609 views
in Q2A Core by
I want to use html tag in answer.  But it shows just like normal text.

Such as bold tag is

<b>bold tag</b>

how can I fix this. Someone help me...

My site is https://www.ask-ans.com

3 Answers

+1 vote
by

You seem to be using the Basic editor. Navigate to admin/posting. Make sure you have the WYSIWYG editor set in the "Default editor for answers" setting.

by
No,  I do not want to use the WYSIWYG editor. Without editor How can it be done ?
by
If you use plain text editor you cannot do it unless you modify the code to handle it.
by
How can I do it ?
0 votes
by
Then you have to download editor plugin....

I suggest you to search this ' q2a fast edit plugin' on google.. .

Then set the plugin on your file..
0 votes
by

Input text is cleaned up by the htmLawed module in any editor. This cleaning process is essential for sites where unspecified number of users write articles. However, this process is not necessary for trusted users such as super administrator. If you follow this theory, you will need to do two hacks.

First is to start Basic editor instead of WYSIWYG editor in the case of administrators.

Second is to disable the qa_sanitize_html () function in the case of administrators.

Reference: https://www.question2answer.org/qa/38943/

...