mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	modules/base: fix markdown mention regex for #826
- conf/locale: add mew translator profile
This commit is contained in:
		@@ -3,6 +3,7 @@
 | 
			
		||||
 | 
			
		||||
Akihiro YAGASAKI <yaggytter@momiage.com>
 | 
			
		||||
Christoph Kisfeld <christoph.kisfeld@gmail.com>
 | 
			
		||||
Huimin Wang <wanghm2009@hotmail.co.jp>
 | 
			
		||||
Thomas Fanninger <gogs.thomas@fanninger.at>
 | 
			
		||||
Łukasz Jan Niemier <lukasz@niemier.pl>
 | 
			
		||||
Lafriks <lafriks@gmail.com>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -17,7 +17,7 @@ import (
 | 
			
		||||
	"github.com/gogits/gogs/modules/setting"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const APP_VER = "0.5.12.0204 Beta"
 | 
			
		||||
const APP_VER = "0.5.12.0206 Beta"
 | 
			
		||||
 | 
			
		||||
func init() {
 | 
			
		||||
	runtime.GOMAXPROCS(runtime.NumCPU())
 | 
			
		||||
 
 | 
			
		||||
@@ -106,7 +106,7 @@ func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var (
 | 
			
		||||
	MentionPattern     = regexp.MustCompile(`(\s@)[0-9a-zA-Z_]{1,}`)
 | 
			
		||||
	MentionPattern     = regexp.MustCompile(`((^|\s)@)[0-9a-zA-Z_]{1,}`)
 | 
			
		||||
	commitPattern      = regexp.MustCompile(`(\s|^)https?.*commit/[0-9a-zA-Z]+(#+[0-9a-zA-Z-]*)?`)
 | 
			
		||||
	issueFullPattern   = regexp.MustCompile(`(\s|^)https?.*issues/[0-9]+(#+[0-9a-zA-Z-]*)?`)
 | 
			
		||||
	issueIndexPattern  = regexp.MustCompile(`( |^)#[0-9]+`)
 | 
			
		||||
 
 | 
			
		||||
@@ -364,6 +364,9 @@ img.avatar-100 {
 | 
			
		||||
.markdown table tr:nth-child(2n) {
 | 
			
		||||
  background-color: #F8F8F8;
 | 
			
		||||
}
 | 
			
		||||
.markdown p {
 | 
			
		||||
  margin: 20px 0;
 | 
			
		||||
}
 | 
			
		||||
.markdown a {
 | 
			
		||||
  color: #428BCA;
 | 
			
		||||
}
 | 
			
		||||
@@ -448,9 +451,6 @@ img.avatar-100 {
 | 
			
		||||
  margin: 15px 0;
 | 
			
		||||
  border-bottom: 2px solid #EEE;
 | 
			
		||||
}
 | 
			
		||||
.markdown p {
 | 
			
		||||
    margin: 20px 0;
 | 
			
		||||
}
 | 
			
		||||
.markdown blockquote:last-child,
 | 
			
		||||
.markdown ul:last-child,
 | 
			
		||||
.markdown ol:last-child,
 | 
			
		||||
 
 | 
			
		||||
@@ -83,6 +83,9 @@
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  p {
 | 
			
		||||
     margin: 20px 0;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
.markdown a {
 | 
			
		||||
    color: #428BCA;
 | 
			
		||||
 
 | 
			
		||||
@@ -1 +1 @@
 | 
			
		||||
0.5.12.0204 Beta
 | 
			
		||||
0.5.12.0206 Beta
 | 
			
		||||
		Reference in New Issue
	
	Block a user