KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
fluid-converter
โ 13
Open GitHub โ
FluidConverter repository
Download README (.md)
Explore Similar Repositories
shaparak-verifier-firefox
:
๐ฆ verify http://shaparak.ir gateways and protect users against phishing attacks.
networking-team
:
No description available.
ChangeLanguage
:
this is the best way to change the app directions(RTL or LTR) without any needs to restart the app, also solving storyboards and xibs cashing.
Allpay
:
Allpay - Laravel 5 version
Weak-Category-by-Runtime
:
A tool to create weakly property in category.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
fluid-converter
?
Download (.md)
# FluidConverter [](https://travis-ci.org/jeremieroulin/fluid-converter) Convert Fluid tags into inline notation. http://www.fluid-converter.com/ ## What does it do? ## This tool can convert fluid tags ```<f:myTag myAttr="myAttrVal"/>``` to its inline notation ```{f:myTag(myAttr: 'myAttrVal')}```. It also converts `if` nested tags for example : ``` <f:if condition="myCond"> <f:then>condition is met</f:then> <f:else>condition is not met</f:else> </f:if> ``` becomes ```{f:if(condition: 'myCond', then: 'condition is met' else: 'condition is not met')}```. Another feature produces ```{foo -> f:format.html()}``` from ```<f:format.html>foo</f:format.html>``` ## Want to improve this tool? ## 1. Clone the repository 2. Open your terminal and move where you cloned the repository ```cd your/project/``` 3. Run ```npm install``` to install dev dependencies 4. Run ```gulp``` and start working 5. Open your browser and tip [localhost:3000](localhost:3000)