You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's easy! Launch the application (keep in mind the program is not released yet, but you can still try it out) and follow the steps! (hopefully you don't get to overwhelmed, we're working on that as well).
cout << "Embed the code directly into a HTML file or put it in a JavaScript file? [H (HTML)/J (JavaScript)] ";
43
44
cin >> fileType;
@@ -61,32 +62,42 @@ int main()
61
62
}
62
63
intapiSys() {
63
64
intfileSys();
65
+
system("cls");
64
66
cout << "This application currently only supports GitHub's API system." << endl;
65
67
cout << "For your own reference the base URL is https://api.github.com/" << endl;
66
68
cout << "Choose whether you would like to embed a single repository or a list (found using filters). [R (single repo)/L (list of repos) [FUTURE RELEASE] ";
67
69
cin >> repoSearchType;
70
+
system("cls");
68
71
if (repoSearchType == "R" || repoSearchType == "r") {
69
72
cout << "Please type the owner of the repository you are trying to embed: ";
70
73
cin >> singleRepoOwner;
74
+
system("cls");
71
75
cout << "Please type the name of the repository you are trying to embed: ";
if (fullFilePathConfirm == "Y" || fullFilePathConfirm == "y") {
117
132
ofstream file((fullFilePath).c_str());
@@ -136,7 +151,9 @@ int fileSys() {
136
151
137
152
cout << "For this code to work the code needs to place the results in a HTML element with a certain ID value. What should that value be? (no spaces) ";
0 commit comments