summary refs log tree commit diff
path: root/text2html/txt_to_html/frm_main.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-08 04:29:37 +0000
commite85f0984bac7611f216bbc406713e8fd86312e33 (patch)
tree390389c21e5431ea9f3680b6f875148b8e28713b /text2html/txt_to_html/frm_main.cs
parenttemperatures (diff)
downloadcs-e85f0984bac7611f216bbc406713e8fd86312e33.tar
cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar.gz
cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar.bz2
cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar.xz
cs-e85f0984bac7611f216bbc406713e8fd86312e33.zip
text -> HTML
Diffstat (limited to 'text2html/txt_to_html/frm_main.cs')
-rw-r--r--text2html/txt_to_html/frm_main.cs79
1 files changed, 79 insertions, 0 deletions
diff --git a/text2html/txt_to_html/frm_main.cs b/text2html/txt_to_html/frm_main.cs
new file mode 100644
index 0000000..2df86b9
--- /dev/null
+++ b/text2html/txt_to_html/frm_main.cs
@@ -0,0 +1,79 @@
+using System;

+using System.Collections.Generic;

+using System.ComponentModel;

+using System.Data;

+using System.Drawing;

+using System.Linq;

+using System.Text;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+/* to read/write files */

+using System.IO;

+

+namespace txt_to_html

+{

+	public partial class frm_main : Form

+	{

+		public frm_main()

+		{

+			InitializeComponent();

+		}

+

+		private void btn_convert_Click(object sender, EventArgs e)

+		{

+			/* show a dialog that lets the user choose a text file to read */

+			OpenFileDialog txt = new OpenFileDialog();

+			txt.Filter = "Text File|*.txt";

+			if (txt.ShowDialog() != DialogResult.OK)

+				return;

+

+			/* show a dialog that lets the user create an output html file */

+			SaveFileDialog html = new SaveFileDialog();

+			html.Filter = "Hyper Text Markup File|*.html";

+			if (html.ShowDialog() != DialogResult.OK)

+				return;

+

+			/* copy the contents of the selected text file to an array */

+			string[] input = File.ReadAllLines(txt.FileName);

+

+			/* create the output html file and start writing the html */

+			StreamWriter output = File.CreateText(html.FileName);

+			output.WriteLine("<html><body bgcolor='#F6F3F0'>");

+			for (int i = 0; i < input.Count(); i++)

+				/* check for special syntax and convert it to html */

+				switch (input[i]) {

+					case string s when s.StartsWith("	"):

+						output.WriteLine(input[i].Replace("	",

+							"<p>") + "</p>");

+						break;

+					case string s when s.StartsWith("! "):

+						output.WriteLine(input[i].Replace("! ",

+							"<a href='http://") + "'>" +

+							input[i].Replace("! ", "") + "</a>");

+						break;

+					case string s when s.StartsWith("# "):

+						output.WriteLine(input[i].Replace("# ",

+							"<h1>") + "</h1>");

+						break;

+					case string s when s.StartsWith("## "):

+						output.WriteLine(input[i].Replace("## ",

+							"<h2>") + "</h2>");

+						break;

+					case string s when s.StartsWith("### "):

+						output.WriteLine(input[i].Replace("### ",

+							"<h3>") + "</h3>");

+						break;

+				}

+			output.WriteLine("</body></html>");

+

+			/* close the file and tell the user that the conversion was successful */

+			output.Close();

+			MessageBox.Show("Converted Successfully! Your html file is located at: " + html.FileName);

+		}

+

+		private void btn_exit_Click(object sender, EventArgs e)

+		{

+			this.Close();

+		}

+	}

+}