Skip to content

MahmoudElmanayly/EditorForHTMLplusplus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML++ Editor

An Editor to write a HTML++ code then converts it to normal HTML code.

HTML++ Code Example:

Here some HTML++ code :

 html<
        head<
                title<"Test">
        >,
        body<
                h1<"Hello HTML++">
        >

 >

That will be converted to :

<html>
        <head>
                <title>Test</title>
        </head>

        <body>
                <h1>Hello HTML++</h1>
        </body>
</html>

Tools

  • C++ Templates
  • FLTK library

About

An Editor to write HTML in an easy way using C++

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published