Sublime Forum

Generate automatic projects with Sublimetext based on markdown? What do you guys think?

#1

1- feature name

Generate automatic projects with Sublimetext based on markdown? What do you guys think?

2- feature description

  1. I would like to generate a project according to this specification
  2. I was thinking of creating this format here, sample:

input: example1.filesystemprojectsublimetext ‘.fps’

├── _drafts
├── _site
├── _config.yml
└── index.html

output: example1.json

{ 
"cmd": "mkdir", "_drafts"],
"cmd": "mkdir", "_site"],
"touch": "index.html"],
"touch": "_config.yml"]
}

this is same in shell

$ > mkdir _drafts
$ > mkdir _site
$ > mkdir _drafts
$ > touch index.html
$ > touch _config.yml

3- Notes

  1. What do you think of the idea?
  2. My idea would be to have this file format, so Sublimetext automatically generates files and folders.
  3. Usually the mkdir command creates directories, folders
  4. Usually the touch command creates files
  5. My idea when creating this file format is to generate files, folders and directories with command_line in Sublimetext here

4. References

0 Likes

#2

@jfcherng Hi! How are you? What do you think of this idea?

0 Likes

#3

You can develop your own plugin for sure. And stop pinging me.

6 Likes