Hi,
I am using drupal7 and I want to create a view as "JSON data document" format for specific custom content type recipe.
In this recipe I have used a textarea box (which can take text and html values also) I have entered an ordered list value and the same value is stored in database as same format as below :-
<ol><li>Appointment scheduling post API</li><li>Go...</li></ol>
But in the json format the same format is not coming and displays as a plain text just like as below:-
Appointment scheduling post API/Go.
But my requirement is to show the data as <ol><li>Appointment scheduling post API</li><li>Go...</li></ol> format.
But I am unable to get this. Please help me in this regards. I am struggling from one day.
Note:--
I have also tried the following things:--
I clicked on
structure-->views-->mycustom view--> Format: JSON data document | Settings-->
Then I unchecked the Plaintext output option. Then the data is coming as raw format i.e
<ol><li>Appointment scheduling post API</li><li>Go...</li></ol>
But here all other data is coming as raw format. But I want only for the text box only. Not for other images box etc.
So please provide me the steps to do this