-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Description
Implement a feature to change the extension of the currently opened file in the workspace from .html to .blade.php. This feature will ensure that only HTML files are converted to Blade templates.
Task
- Utilize the VS Code API to check the extension of the currently opened file in the workspace.
- If the file has a
.htmlextension, proceed with the conversion to.blade.php. - If the file does not have a
.htmlextension, display an appropriate message to the user.
Acceptance Criteria
- The extension should only convert files with a
.htmlextension to.blade.php. - If the currently opened file does not have a
.htmlextension, an informative message should be displayed to the user. - The implementation should use the VS Code API to determine the file extension.
Additional Context
This feature will enhance the robustness of the extension by preventing unintended file conversions and improving user experience.## Description
Implement a feature to change the extension of the currently opened file in the workspace from .html to .blade.php. This feature will ensure that only HTML files are converted to Blade templates.
Task
- Utilize the VS Code API to check the extension of the currently opened file in the workspace.
- If the file has a
.htmlextension, proceed with the conversion to.blade.php. - If the file does not have a
.htmlextension, display an appropriate message to the user.
Acceptance Criteria
- The extension should only convert files with a
.htmlextension to.blade.php. - If the currently opened file does not have a
.htmlextension, an informative message should be displayed to the user. - The implementation should use the VS Code API to determine the file extension.
Additional Context
This feature will enhance the robustness of the extension by preventing unintended file conversions and improving user experience.
Reactions are currently unavailable