Rendering markdown sederhana

20

Ada beberapa cara untuk membuat header pada posting di jaringan Stack Exchange. Format yang paling umum 1 digunakan pada PPCG tampaknya menjadi:

# Level one header
## Level two header
### Level three header

Catat spasi setelah tanda pagar. Juga, perhatikan bahwa tanda pagar tidak termasuk.

Tantangan:

Ambil string (mungkin multiline) sebagai input, dan output string pada format berikut:

  • Jika tajuk adalah level 1, maka hasilkan setiap huruf 4-kali-4
  • Jika tajuk adalah level 2, maka hasilkan setiap huruf 3-kali-3 kali
  • Jika header adalah level 3, maka output setiap huruf 2-kali-2 kali
  • Jika sebuah baris bukan header maka output seperti apa adanya.

Menggambarkan:

--- Level 1 ---
# Hello
--- Output---
HHHHeeeelllllllloooo    
HHHHeeeelllllllloooo
HHHHeeeelllllllloooo
HHHHeeeelllllllloooo

--- Level 2 ---
## A B C def
--- Output ---
AAA   BBB   CCC   dddeeefff
AAA   BBB   CCC   dddeeefff
AAA   BBB   CCC   dddeeefff

--- Level 3 ---
### PPCG!
--- Output---
PPPPCCGG!!
PPPPCCGG!!

Sederhana seperti itu!


Aturan:

  • Anda harus mendukung input melalui beberapa baris. Menggunakan \ndll untuk baris baru adalah OK.
    • Tidak akan ada garis yang hanya berisi #diikuti oleh satu ruang
  • Keluaran harus disajikan melalui beberapa baris. Anda mungkin tidak menampilkan \nbukan baris baru literal.
    • Ruang tambahan dan baris baru OK.

Kasus uji:

Input dan output dipisahkan oleh garis ....

# This is a text
with two different
### headers!
........................................................    
TTTThhhhiiiissss    iiiissss    aaaa    tttteeeexxxxtttt
TTTThhhhiiiissss    iiiissss    aaaa    tttteeeexxxxtttt
TTTThhhhiiiissss    iiiissss    aaaa    tttteeeexxxxtttt
TTTThhhhiiiissss    iiiissss    aaaa    tttteeeexxxxtttt
with two different
hheeaaddeerrss!!
hheeaaddeerrss!!

This input has
## trailing hash marks ##
#and a hash mark without a space after it.
........................................................    
This input has
tttrrraaaiiillliiinnnggg   hhhaaassshhh   mmmaaarrrkkksss   ######
tttrrraaaiiillliiinnnggg   hhhaaassshhh   mmmaaarrrkkksss   ######
tttrrraaaiiillliiinnnggg   hhhaaassshhh   mmmaaarrrkkksss   ######
#and hash marks without a space after it.

# This ## is ### strange
#### ###
........................................................
TTTThhhhiiiissss    ########    iiiissss    ############    ssssttttrrrraaaannnnggggeeee
TTTThhhhiiiissss    ########    iiiissss    ############    ssssttttrrrraaaannnnggggeeee
TTTThhhhiiiissss    ########    iiiissss    ############    ssssttttrrrraaaannnnggggeeee
TTTThhhhiiiissss    ########    iiiissss    ############    ssssttttrrrraaaannnnggggeeee
#### ###

Multiple


### newlines! # 
:)
........................................................    
Multiple


nneewwlliinneess!!  ##
nneewwlliinneess!!  ##
:)

Line with only a hash mark:
#
### ^ Like that!
........................................................    
Line with only a hash mark:
#
^^  LLiikkee  tthhaatt!!
^^  LLiikkee  tthhaatt!!

1: Aku belum benar-benar memeriksa, tapi kupikir itu benar.

Stewie Griffin
sumber
Bisakah kita mengambil input sebagai array string?
Ian H.

Jawaban:

7

Ditumpuk , 51 50 byte

Disimpan 1 byte berkat @RickHitchcock - regex golf

['^(##?#?) (.+)'[\#'5\-@k CS k*k rep LF#`]3/mrepl]

Cobalah online!

Fungsi anonim yang mengambil input dari stack dan membiarkannya di stack.

Penjelasan

['^(##?#?) (.+)'[\#'5\-@k CS k*k rep LF#`]3/mrepl]
[                                            mrepl]   perform multiline replacement
 '^(##?#?) (.+)'                                     regex matching headers
                [                        ]3/         on each match:
                 \#'                                   count number of hashes
                    5\-                                5 - (^)
                       @k                              set k to number of repetitions
                          CS                           convert the header to a char string
                             k*                        repeat each char `k` times
                               k rep                   repeat said string `k` times
                                     LF#`              join by linefeeds
Conor O'Brien
sumber
3

JavaScript (ES6), 111 105 byte

Disimpan 6 byte berkat @Shaggy

s=>s.replace(/^(##?#?) (.+)/gm,(_,a,b)=>`
${b.replace(/./g,e=>e.repeat(l=5-a.length))}`.repeat(l).trim())

Cocokkan hash 1-3 di awal string atau didahului oleh baris baru, lalu ulangi setiap karakter dalam pertandingan bersama dengan pertandingan itu sendiri, berdasarkan pada panjang hash.

Kasus uji:

Rick Hitchcock
sumber
2

Retina , 125 104 byte

m(`(?<=^# .*).
$0$0$0$0
(?<=^## .*).
$0$0$0
(?<=^### .*).
$0$0
^# 
$%'¶$%'¶$%'¶
^## 
$%'¶$%'¶
^### 
$%'¶

Cobalah online

Disimpan 21 byte berkat Neil.

mbomb007
sumber
Simpan 3 byte dengan menggunakan %)pada tahap ketiga yang memungkinkan Anda untuk menghapus %s pada dua tahap pertama. Juga satu biasanya menempatkan Gsetelah (s (yang sekarang Anda akan membutuhkan dua) di header.
Neil
Lebih baik lagi, Anda dapat menggunakan m)atau m(yang sekarang menyimpan 9 byte karena Anda kemudian dapat menghapus semua yang lain m.
Neil
Header ternyata tidak perlu. Juga, saya menyimpan 12 byte lagi: Coba online!
Neil
Oh, ya saya hanya terbiasa menggunakan header untuk beberapa test case.
mbomb007
2

MATL , 43 42 40 byte

1 byte dihapus berkat Rick Hitchcock !

`j[]y'^##?#? 'XXgn:(2M4:QP&mt~+t&Y"0YcDT

Ini menghasilkan spasi tambahan di setiap baris (diizinkan oleh tantangan), dan keluar dengan kesalahan (diizinkan secara default) setelah menghasilkan ouput.

Cobalah online!

Penjelasan

`            % Do...while loop
  j          %   Input a line as unevaluated string
  []         %   Push empty array
  y          %   Duplicate from below: push input line again
  '^##?#? '  %   Push string for regexp pattern
  XX         %   Regexp. Returns cell array with the matched substrings
  g          %   Get cell array contents: a string, possibly empty
  n          %   Length, say k. This is the title level plus 1, or 0 if no title
  :(         %   Assign the empty array to the first k entries in the input line
             %   This removing those entries from the input
  2M         %   Push k again
  4:QP       %   [1 2 3 4], add 1 , flip: pushes [5 4 3 2]
  &m         %   Push index of k in that array, or 0 if not present. This gives
             %   4 for k=2 (title level 1), 3 for k=3 (tile level 2), 2 for k=2
             %   (title level 1), and 0 for k=0 (no title). The entry 5 in the
             %   array is only used as placeholder to get the desired result.
  t~+        %   Duplicate, negate, add. This transforms 0 into 1
  t&Y"       %   Repeat each character that many times in the two dimensions
  0Yc        %   Postpend a column of char 0 (displayed as space). This is 
             %   needed in case the input line was empty, as MATL doesn't
             %   display empty lines
  D          %   Display now. This is needed because the program will end with
             %   an error, and so implicit display won't apply
  T          %   True. This is used as loop condition, to make the loop infinite
             % End (implicit)
Luis Mendo
sumber
Saya bertanya-tanya apa cara terbaik untuk melakukan ini di MATLAB adalah ... Produk Kronecker tentu saja cara terbaik untuk melakukannya :) Bagus!
Stewie Griffin
@StewieGriffin Ketika saya melihat tantangan, saya langsung memikirkan produk Kronecker. Tapi saya baru saja menemukan cara yang menggunakan 2 byte lebih pendek repelem( Y"dalam MATL). kronmungkin masih jalan terpendek di MATLAB
Luis Mendo
2

Perl 5, 47 +1 (-p) byte

s/^##?#? //;$.=6-("@+"||5);$_=s/./$&x$./ger x$.

coba online

Nahuel Fouilleul
sumber
1

Arang , 46 byte

FN«Sι≔⊕⌕E³…⁺×#κι⁴### θF⎇θ✂ι⁻⁵θLι¹ι«G↓→↑⊕θκ→»D⎚

Cobalah online! Tautan adalah untuk mengucapkan versi kode. Arang tidak benar-benar melakukan input array string, jadi saya harus menambahkan panjang array sebagai input. Penjelasan:

FN«Sι

Ulangi jumlah string input yang sesuai.

≔⊕⌕E³…⁺×#κι⁴### θ

Buat array string dengan mengambil input dan awalan hingga 2 #s, kemudian memotong panjangnya 4, kemudian coba temukan ###dalam array, lalu konversikan ke 1-indexing. Ini menghasilkan angka yang kurang dari pembesaran huruf.

F⎇θ✂ι⁻⁵θLι¹ι«

Jika pembesaran huruf adalah 1 maka lilitkan seluruh string jika tidak lilitan pada sufiks yang sesuai (yang sulit untuk diekstraksi dalam Charcoal).

G↓→↑⊕θκ→

Gambarlah sebuah poligon yang diisi dengan huruf yang berakhir di sudut kanan atas, dan kemudian siapkan untuk huruf berikutnya.

»D⎚

Cetak output dan reset siap untuk string input berikutnya.

Neil
sumber
1

SOGL V0.12 , 31 28 byte

¶Θ{■^##?#? øβlF⁄κ6κ5%:GI*∑∙P

Coba Di Sini! - kode tambahan ditambahkan karena kode adalah fungsi dan mengambil input pada stack (SOGL tidak dapat mengambil input multiline jika tidak: /) - inputs.value”- tekan string itu, - evaluasi sebagai JS, F- panggil fungsi itu

Penjelasan:

¶Θ                            split on newlines
  {                           for each item
   ■^##?#?                      push "^##?#? "
           øβ                   replace that as regex with nothing
             l                  get the new strings length
              F⁄                get the original strings length
                κ               and subtract from the original length the new strings length
                 6κ             from 6 subtract that
                   5%           and modulo that by 5 - `6κ5%` together transforms 0;2;3;4 - the match length to 1;4;3;2 - the size
                     :          duplicate that number
                      G         and get the modified string ontop
                       I        rotate it clockwise - e.g. "hello" -> [["h"],["e"],["l"],["l"],["o"]]
                        *       multiply horizontally by one copy of the size numbers - e.g. 2: [["hh"],["ee"],["ll"],["ll"],["oo"]]
                         ∑      join that array together - "hheelllloo"
                          ∙     and multiply vertiaclly by the other copy of the size number: ["hheelllloo","hheelllloo"]
                           P    print, implicitly joining by newlines
dzaima
sumber
0

Proton , 130 byte

x=>for l:x.split("\n"){L=l.find(" ")print(L>3or L+len(l.lstrip("\#"))-len(l)?l:"\n".join(["".join(c*(5-L)for c:l[L+1to])]*(5-L)))}

Cobalah online!

HyperNeutrino
sumber
Saya pikir Anda tidak diperbolehkan menerima dan mengembalikan daftar baris, aturannya cukup ketat: Anda harus mendukung input melalui banyak baris. , Keluaran harus disajikan lebih dari beberapa baris. Anda mungkin tidak menghasilkan \ n sebagai ganti baris baru yang sesungguhnya. .
Tn. Xcoder
@ Mr.Xcoder Whoops, salahku. Pemasangan.
HyperNeutrino
Catatan: Tidak apa-apa jika input telah \n, tetapi output harus ditampilkan dengan baris baru literal.
Stewie Griffin
@ mbomb007 Ups. Saya lupa meletakkannya 5-di sana. Maaf
HyperNeutrino
@ mbomb007 diperbaiki
HyperNeutrino
0

Python 3 , 147 byte

def f(x):
	for l in x.split("\n"):L=l.find(" ");print(L>3or L+len(l.lstrip("#"))-len(l)and l or"\n".join(["".join(c*(5-L)for c in l[L+1:])]*(5-L)))

Cobalah online!

-1 byte terima kasih kepada Tn. Xcoder

HyperNeutrino
sumber
@ mbomb007 Ups. Saya lupa meletakkannya 5-di sana. Maaf
HyperNeutrino
0

C # (.NET Core) , 268 + 18 byte

n=>{var r="";for(int l=0,c;l<n.Length;l++){var m=n[l];var s=m.Split(' ');var y=s[0];if(!y.All(x=>x==35)|y.Length>3|s.Length<2)r+=m+'\n';else for(int i=0,k=y.Length;i<5-k;i++){for(c=1;c<m.Length-k;)r+=new string(m.Substring(k,m.Length-k)[c++],5-k);r+='\n';}}return r;};

Cobalah online!

Ian H.
sumber
0

Python 3 , 131 byte

from re import*
print(sub("^(#+) (.*?)$",lambda x:((sub('(.)',r'\1'*(5-len(x[1])),x[2])+'\n')*(5-len(x[1])))[:-1],input(),flags=M))

Cobalah online!

Saya menggunakan Python 3 untuk digunakan []dengan regex.

Neil
sumber
0

PHP, 122 +1 byte

for($y=$z=" "==$s[$i=strspn($s=$argn,"#")]&&$i?5-$i++:1+$i=0;$y--;print"
")for($k=$i;~$c=$s[$k++];)echo str_pad($c,$z,$c);

Jalankan sebagai pipa dengan -nR(akan bekerja pada satu jalur input satu demi satu) atau coba online .

Titus
sumber
0

J , 55 byte

([:{:@,'^##?#? 'rxmatch])((1 1 4 3 2{~[)([:|:[$"0#)}.)]

Saya tidak tahu cara membuat TIO bekerja dengan regex J, jadi saya tidak bisa memberikan tautan yang berfungsi.

Berikut ini cara mengujinya dalam J interpreter (diuji dengan J804)

   f=.([:{:@,'^##?#? 'rxmatch])((1 1 4 3 2{~[)([:|:[$"0#)}.)]
   txt=.'# Hello'; '## A B C def'; '### PPCG!'; '#and a hash mark without a space after it.'; '##### ###'
   ; f each txt

HHHHeeeelllllllloooo                      
HHHHeeeelllllllloooo                      
HHHHeeeelllllllloooo                      
HHHHeeeelllllllloooo                      
AAA   BBB   CCC   dddeeefff               
AAA   BBB   CCC   dddeeefff               
AAA   BBB   CCC   dddeeefff               
PPPPCCGG!!                                
PPPPCCGG!!                                
#and a hash mark without a space after it.
##### ###

Saya mensimulasikan string multiline melalui daftar string kotak.

Galen Ivanov
sumber
0

Python 2 , 126 124 117 byte

while 1:l=raw_input();i=l.find(' ');v=5-i*(l[:i]in'###');exec"print[l,''.join(c*v for c in l[i+1:])][v<5];"*(v>4or v)

Cobalah online!

atau

while 1:l=raw_input();i=l.find(' ');t=''<l[:i]in'###';exec"print[l,''.join(c*(5-i)for c in l[i+1:])][t];"*(t<1or 5-i)

Cobalah online!

ovs
sumber
0

JavaScript, 112 byte

x=>x.replace(/^(##?#?) (.*)/mg,(_,n,w)=>(t=>Array(t).fill(w.replace(/./g,c=>c.repeat(t))).join`
`)(5-n.length))

tsh
sumber
Saya pikir ini tidak berhasil #### ##.
Rick Hitchcock
@RickHitchcock diperbaiki
tsh
0

C # 4.5 158 Bytes

Di mana saya adalah input dalam bentuk string.

int l,m,t,s=0;while(i[s]=='#'){s++;};t=s>0?4-s+1:1;for(l=0;l<t;l++){foreach(char c in i.Skip(s>0?s+1:0))for(m=0;m<t;m++)Console.Write(c);Console.WriteLine();}
supermeerkat
sumber