Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 993 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 993 Bytes


A simple text editor that can be used for a forum or website (use for wherever you want). If you have any suggestions on what to add, write. Completely free


How install(Html)

<head>
  <link rel="stylesheet" type="text/css" href="https://gitcdn.link/cdn/xoheveras/XoheBB/main/vendor/css/XoheBBEditor.css">
  <script type="text/javascript" src="https://gitcdn.link/cdn/xoheveras/XoheBB/main/vendor/js/createEditor.js"></script>
</head>
<body>
  <div id="XoheBB"></div>
</body>

Setting(JS)

<script type="text/javascript">

	// Create Editor
	createEditor("white","black");
  
	// Setting Editor
	setSize(800, 300); // not necessary
	setRadius(5);
	setBorder("0px solid white");
	setShadow();
  
</script>