Questions tagged [text-to-html]

Convert plain text to HTML paragaphs.

Convert plain text to HTML paragaphs.

19 questions
0
votes
0 answers

How to I convert HTTP strings to URLs while also allowing Textile-style formatting without conflicts?

I am creating a minimal version of a text-to-markup process very similar to Textile. I successfully convert bold, italic, strikethroughs (with *, _ and - respectively), but I am also using the following expression to automatically convert HTTP…
Rhys
  • 1,581
  • 2
  • 14
  • 22
-1
votes
2 answers

Text to HTML in SharePoint using Javascript

I have a summary single-line text column in SharePoint 2007 that is a truncation of a multi-line text column. Going through the complicated process to get there, it turns into text which then needs to be converted back to HTML, so that the tags…
Lance Roberts
  • 22,383
  • 32
  • 112
  • 130
-1
votes
1 answer

Java -- Need help to enhance the code

I wrote a simple program to read the content from text/log file to html with conditional formatting. Below is my code. import java.io.*; import java.util.*; class TextToHtmlConversion { public void readFile(String[] args) { for (String textfile :…
Lme Adepu
  • 31
  • 1
  • 4
-4
votes
1 answer

SQL Server Function that will return a text in HTML format

I have a csv file that contains resume in plain text. I need to convert the text field from a text to html code. For example: Plain text: Head Line2 Line3 Line4 Converted:

Head

Line2
Line3
Line4

Can a SQL Server…
TD Ser
  • 1
  • 2
1
2