WDPL (Web Development Programming Language) Extension for Visual Studio Code
This extension provides syntax highlighting for WDPL (Web Development Programming Language), a simple, natural language-inspired programming language designed for web development tasks. WDPL is designed to be intuitive and accessible, with a focus on clarity and ease of use.
Features
Syntax Highlighting: WDPL code is highlighted in a way that's easy to understand and follow.
Simple Syntax: Designed to look like natural language, with features like comments beginning with > and easy-to-understand constructs for loops, conditionals, and more.
Supports .wdpl File Extension: You can now write and edit WDPL code in Visual Studio Code.
Installation
Download the extension from the Visual Studio Code Marketplace (coming soon).
Open Visual Studio Code.
Navigate to Extensions (Ctrl+Shift+X) and search for "WDPL Syntax Highlighter".
Click Install.
Open any .wdpl file to see the syntax highlighting in action.
Example WDPL Code
<page title="My WDPL Page">
<header>
<h1>Hello, World in WDPL!</h1>
</header>
<section>
<p>This is a paragraph in WDPL.</p>
</section>
<section>
<button onclick="alert('Button clicked!')">Click here</button>
</section>
<script>
let message = "This is a script in WDPL";
print(message);
</script>
</page>
Getting Started
Open a .wdpl file in Visual Studio Code.
Start coding in WDPL!
Enjoy automatic syntax highlighting.
Contribute
If you'd like to contribute to this extension, visit the GitHub repository and submit a pull request or issue.
Learn More
Visit the official WDPL website for documentation and updates: wdpl-inicio.web.app