Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
File renamed without changes.
File renamed without changes.
16 changes: 0 additions & 16 deletions md renderer/ReadmyMD/HELP.md

This file was deleted.

7 changes: 0 additions & 7 deletions md renderer/ReadmyMD/target/classes/application.properties

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
92 changes: 0 additions & 92 deletions md renderer/ReadmyMD/target/classes/templates/error.html

This file was deleted.

241 changes: 0 additions & 241 deletions md renderer/ReadmyMD/target/classes/templates/main.html

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@

package com.artworkStudios.ReadmyMD;

import java.io.IOException;
import java.nio.file.*;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
import java.nio.file.DirectoryStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;

public class basicIO {
// Folder where all markdown files are stored
private final Path folder = Paths.get("markdowns");
Expand Down Expand Up @@ -37,3 +43,4 @@ public List<String> listAllFiles() throws IOException {
}
}
}

Loading